Jump to content

PHP from XML Inserting into DB


ackerchez

Recommended Posts

Hey Everyone,

 

I'm new to the forum and have a quick question which I am sure is a really simple thing for all you gurus out here.

 

I have a php file in which I am reading in XML from a file and trying to parse and insert the correct data into a database. The structure of the XML is as follows:

 

<?xml version="1.0" encoding="utf-8"?>
<root>
  <sectioncode label="Biology" id="1">
    <lab label="Biological Materials" id="2" />
  </sectioncode>
  <sectioncode label="Chemistry" id="2">
    <lab label="Chemical Materials" id="3" />
    <lab label="BioChem" id="4" />
    <lab label="Charles' law" id="5" />
  </sectioncode>
</root>

 

So what I am trying to do is to take the id attribute from the sectioncode node and the label attribute from the lab node and put them in a table. There is a twist however in that I need to first lookup the existing lab id's from that sectioncode and if a lab with that id already exists, it should not copy in that lab. Here is the php code that I have:

 

$xml = simplexml_load_file("sample.xml");

foreach ($xml->sectioncode as $section)
{
	$sectionid=(string)$section['id'];

	foreach ($section->lab as $lab)
	{
		$labname=(string)$lab['label'];
		$labid=(string)$lab['id'];

		$query = "Select * from dummy where sectionnumber='$sectionid'";
		$result = mysql_query($query);
		$row = mysql_fetch_assoc($result);

		if($row['labid']!=$labid)
		{
			$query2 = ("INSERT INTO `dummy` SET `sectionnumber`='$sectionid', `title`='$labname', `relpath`='',  `labid`='', `status`='',
			`publishdate`='', `unpublishdate`=''");
			$result2 = mysql_query($query2);
		}
	}	

}

When I run the code I am getting the first three labs copying (Biological Materials, Chemical Materials, and BioChem) regardless of whether the id's are equal or not and never getting the fourth lab copied.

 

Can anyone spot where I am going wrong here?

 

Thanks!!

Link to comment
Share on other sites

ALL string data that could have SQL special characters in it that would break a query (or allow sql injection) must be escaped. Use the mysql_real_escape_string() function on the data before you put it into the query.

 

Hey Everyone,

 

Thanks for the advice about the apostrophie on the Charles' Law name. Now when I run the script it all gets entered. However, can anyone tell me if there is something wrong with my original if statement? The idea is to check if the new ID exists in the DB already and if it doesn't, copy in the new lab title as a new lab.

 

Thanks!!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.