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>