Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/iws8/html/icure/
Upload File :
Current File : /var/www/html/mmishra/iws8/html/icure/tree.php

<?php

// Create DOM from URL or file
$html = file_get_html('http://irp.iiita.ac.in/test1.htm');

// Find all images
foreach($html->find('div') as $element)
       echo $element->src . '<br>';

// Find all links
foreach($html->find('a') as $element)
       echo $element->href . '<br>'; 

?>