I'm trying parse an xml file and insert it into an mysql database. The xml file (syntest.xml) looks like this:
<synonyms>
<syn level="4.0"><w1>LP</w1><w2>vinylskiva</w2></syn>
<syn level="3.7"><w1>OK</w1><w2>javisst</w2></syn>
<syn level="4.6"><w1>OS</w1><w2>operativsystem</w2></syn>
</synonyms>
I have parsed the xml file using simplexml_load_file, and when I use an foreach loop to print the records in the browser the loop goes through all records and everyting looks fine. But when I try to insert the data into the database, the loop doesnt iterate and only one record is inserted.
The code looks like this:
<?php
$con = mysql_connect("localhost","user","username");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("db_name", $con);
if(!$xml=simplexml_load_file('syntest.xml')){
trigger_error('Error reading XML file',E_USER_ERROR);
}
foreach ($xml as $syn) {
$w1 = $syn->w1;
$w2 = $syn->w2;
}
$sql="INSERT INTO db_name (w2, w1)
VALUES
('$w1','$w2')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "Records added";
mysql_close($con)
?>
All help much appreciated!