Advertisement
joris

Theater

Aug 15th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. include "simple_html_dom.php";
  3.  
  4. $html = file_get_html('http://berthojoris.com/data/curl/21cineplex/theater.php');
  5.  
  6. $i = 0;
  7. foreach($html->find('tr') as $element){
  8.    
  9.     $img = $html->find('a[rel]',$i);
  10.     $Judul = $img->attr['rel'];
  11.     echo $Judul;
  12.     echo "<br>";
  13.  
  14.    
  15.    
  16.     $i++;
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement