Hi I am very new to screen scraping. I am trying to scrape reviews from a hotel booking webite to display on to mine..
Ive got this far but got a bit stuck. Can anyone help?
<?php
$data = file_get_contents('http://www.laterooms.com/en/hotel-reviews/238902_the-westfield-bb-sandown.aspx');
$regex = '/<div id="summary">
(.+?)</div>/';
preg_match($regex,$data,$match);
var_dump($match);
echo $match[1];
?>