I'm trying parse an xml file and insert it into an mysql database. The xml file (syntest.xml) looks like this:

LPvinylskiva

OKjavisst

OSoperativsystem

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:

$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!

解决方案

The place of mysql_query isn`t correct. You must insert records in loop:

foreach ($xml as $syn)

{

$w1 = $syn->w1;

$w2 = $syn->w2;

$sql = "INSERT INTO db_name (w1, w2) VALUES ('$w1','$w2')";

$query = mysql_query($sql);

if (!$query)

{

echo ('Error: ' . mysql_error());

}

else

{

echo "Record added";

}

}

mysql_close($con);

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐