i have a problem with this simple html dom i cant get the full title fetched from the website and i am trying to make another for loop which can still filter that images inside that link. In which i am unable to get the second image from the inner link. I had spent alot of time doing this but still have not fixed this problem. could anyone please advise me on how can i go about? or is there any other simpler htmldom i can work around with?
include_once 'simple_html_dom.php';
$counter='';
$html = file_get_html('http://deal.com.sg/deals/singapore');
// Find all article blocks
foreach($html->find('div.c') as $article) {
$item['title'] = $article->find('#deal-title', 0)->plaintext;
$item['titlea'] = $article->find('#deal-title a',0)->href;
$item['dealimg'] = $article->find('a.imagecache',0)->src;
$item['sold'] = $article->find('#deal-sold-number', 0)->plaintext;
$item['original'] = $article->find('#deal-original', 0)->plaintext;
$item['discounted'] = $article->find('#deal-discount', 0)->plaintext;
$item['hoursleft'] = $article->find('#hoursLeft', 0)->plaintext;
$item['secondsLeft'] = $article->find('#secondsLeft', 0)->plaintext;
$item['minutesLeft'] = $article->find('#minutesLeft', 0)->plaintext;
echo "Title ".$item['title'];
echo "<br>";
echo "Title Link http://deal.com.sg/".$item['titlea'];
echo "<br>";
echo "Content Link <br>".$contentLink;
echo "<br>";
echo "Small Image 1st ".$item['dealimg'];
echo "<br>";
$contentLink = "http://deal.com.sg".$item['titlea'];
$getDeals = file_get_html("http://www.deal.com.sg".$item['titlea']);
foreach($getDeals->find('div.c') as $insideContents) {
$dealItem['longtitle'] = $insideContents->find('h1.title',0)->plaintext;
$dealItem['image'] = $insideContents->find('div.img-wrapper img' ,0)->src;
}
echo "Long Title " . $dealItem['longtitle'];
echo "<br>";
echo "Image ".$dealItem['image'];
echo "<br>";
echo "Time Left:". $item['hoursleft'] . ' ' . $item['minutesLeft'] . ' ' .$item['secondsLeft'];
echo "<br>";
echo "Discounted Price" . $item['discounted'];
echo "<br>";
echo "Normal Price" . $item['original'];
echo "<br>";
echo "Vouchers Sold " . $item['sold'];
echo "<br>";
echo "<br>";
$counter++;
}
echo $counter . " Deals were fetched";
$html2 = file_get_html('http://deal.com.sg/deals/singapore');
foreach($html2->find('img') as $articleImg) {
//$articleImg->find('a.imagecache',0)->src;
$articleImg->src;
}