How to make xml file from php and mysql

My partner friend builds a website in flash memory and uses XML files to access data in Flash.

I want to create an editable CMS so that the client can edit the material.

Now I have no experience with XML.

I know PHP, HTML and Mysql very well.

So, how can I modify already created XML files using Mysql and PHP?

+3
source share
3 answers

Can go through

http://library.creativecow.net/articles/brimelow_lee/php_mysql/video-tutorial.php

will clean everything for you.

, XML , mysql, php swf. , XML, , AvatarKava.

+1

XML PHP , XML, :

header('Content-type: text/xml');

XML , , XML . :

<news>
<?
    while($item = mysql_fetch_array($data)){
    ?>
    <item>
        <url><?=$item['url']; ?></url>
        <title><?=$item['title']; ?></title>
    </item>
    }
?>
</news>

, XML, .

+1

Source: https://habr.com/ru/post/1747498/


All Articles