When I try to read from an XML, foreach react as Invalid argument supplied for foreach() The XML file
Following code is used to retrieve data
$availabilityrs = simplexml_load_string($response3);
$hotel = $availabilityrs->rooms->room;
$hotel1 = $availabilityrs->rooms->room;
foreach ($hotel1 as $room) {
echo "<b>Room Name: </b>".$room['name']."</br>";
}