Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i don't seem to be able to find the correct way to process this feeds xml into my database i tried using this script but i'm having trouble getting the simplexml part right i thought loading the xml like this would create an array i could then parse the values into the database heres the script:

$ch = curl_init();
$timeout = 0;
curl_setopt ($ch, CURLOPT_URL, $url1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
$rawdata = curl_exec($ch);
curl_close($ch);

$xml = simplexml_load_file($rawdata);

foreach($xml->lr_rates->hotel->hotel_rooms->room as $room){
    $id = $productid;
    $ref = $room->ref;
    $type = $room->type_description;
    $avail = $room->rooms_available;
    $descr = $room->description;
    $rate = $room->rack_rate;
    $lrcurrency = $room->rate->requested_currency;

    $sql = "DELETE FROM `".$config_databaseTablePrefix."rooms` WHERE hotel_ref = '$id'";
    $wpdb->query($sql); 

    $sql = "INSERT INTO `".$config_databaseTablePrefix."rooms`(hotel_ref,room_ref,room_type,description,availability,price,currency) VALUES ($id,$ref,$type,$descr,$avail,$rate,$lrcurrency)";
    $wpdb->query($sql);
 } 

i know everything is ok up to simplexml_load_string so what am i doing wrong here? here is a sample of the xml data:

<search>
 <response status="2">...</response>
 <lr_rates>
  <hotel>
   <hotel_ref>142680</hotel_ref>
   <hotel_currency>GBP</hotel_currency>
   <hotel_rooms>
    <room>
     <ref>4380316</ref>
     <type>10</type>
     <type_description>Apartment</type_description>
     <sleeps>2</sleeps>
     <rooms_available>0</rooms_available>
     <adults>2</adults>
     <children>0</children>
     <breakfast>false</breakfast>
     <dinner>false</dinner>
     <description>
  The apartment has seperate kitchen area, lounge/dining area, bedroom with double bed and bathroom with bath & shower.
     </description>
     <alternate_description/>
     <rack_rate>140.00</rack_rate>
    </room>
    <room>......</room>
   </hotel_rooms>
   <cancellation_type>First Night Stay Chargeable</cancellation_type>
   <cancellation_policy>1 Days Prior to Arrival</cancellation_policy>
  </hotel>
 </lr_rates>
</search>
share|improve this question
what do you get if you var_dump($xml)? – Jim Aug 2 '12 at 19:23
nothing but if i try and run the script i get this error: Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 2: parser error : Start tag expected, '<' – Dominic Noble Aug 2 '12 at 19:40
have you tried not using $lrxml = new SimpleXMLElement($rawdata); and instead use $xml = simplexml_load_string($rawdata); – Jim Aug 2 '12 at 19:47
so then i get invalid argument foreach – Dominic Noble Aug 2 '12 at 19:59
If you are attempting to open XML url use $xml = simplexml_load_file($url, 'SimpleXMLElement', LIBXML_NOCDATA); – user1190992 Aug 2 '12 at 20:03
show 2 more comments

closed as too localized by hakre, hjpotter92, TheHippo, Jesse, john.k.doe May 11 at 4:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

By the looks of it $productid doesn't exist...

share|improve this answer
the string $productid comes from a database allready and is the same for each set of rooms so i just reused that as its needed to request the data – Dominic Noble Aug 2 '12 at 20:00
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Smamatti Nov 15 '12 at 12:35

Not the answer you're looking for? Browse other questions tagged or ask your own question.