Parsing XML data using php to put into mysql database

前端 未结 5 1456
夕颜
夕颜 2020-12-05 21:59

I have been asked to parse a simple file which is stored as an XML file, the data is to be then put into a mysql database.

However I have absolutely no clue what to

5条回答
  •  感情败类
    2020-12-05 22:31

    $xml = simplexml_load_file($filename);
    
    foreach($xml->products->product as $not)
    {
        foreach($not->attributes() as $a => $b)
        {
            echo $a,'="',$b,"\"
    "; } }

提交回复
热议问题