<?php
include('simple_html_dom.php');
$html = file_get_html('http://www.google.com/');

foreach($html->find('img') as $element)
       echo $element->src . '<br>'; ?>



