![](Pasted%20image%2020241003122311.png) ![](Pasted%20image%2020241003122335.png) ```php Train Listings loadHTML($string); $xpath = new DOMXPath($dom); $titles = $xpath->query("//a[contains(@class, 'title')]"); $prices = $xpath->query("//span[contains(@class, 'currency-value')]"); for ($i=0; $i<$titles->length; $i++) { $title = $titles->item($i)->textContent; $link = $titles->item($i)->getAttribute('href'); $price = $prices->item($i)->textContent; echo "\n"; echo "\n"; echo "\n"; echo "\n"; } ?>
Title Price
$title$price
``` ![](Pasted%20image%2020241010132326.png)