libxml_clear_errors();
// Extract room images
$xpath = new DOMXPath($doc);
$images = $xpath->query(“//img[contains(@class, ‘room-image-class’)]”); // Adjust class name based on actual structure
$prices = $xpath->query(“//span[contains(@class, ‘room-price-class’)]”); // Adjust class
foreach ($images as $img) {
echo ‘getAttribute(“src”) . ‘” alt=”Room Image”>’;
}
foreach ($prices as $price) {
echo ‘
Price: ‘ . $price->textContent . ‘
‘;
}
?>