Parsing XML data using php to put into mysql database

前端 未结 5 1459
夕颜
夕颜 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:26

    $xml = simplexml_load_file($filename);
    foreach($xml->product as $product) {            
    
      foreach($product->attributes() as $name => $attribute) {
        echo "$name = $attribute";
      }         
    }
    

提交回复
热议问题