Advertisement
loplo

Untitled

May 8th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. require('simple_html_dom.php');
  3. $html = file_get_html('http://flightplan.romatsa.ro/init/fpl/flightslr/LRCL/');
  4. $table = $html->find('table', 3);
  5. foreach($table->find('tr') as $row) {
  6. // initialize array to store the cell data from each row
  7. $rowData = array();
  8. foreach($row->find('td') as $cell) {
  9. // push the cell's text to the array
  10. $rowData[] = $cell->innertext;
  11. }
  12.  
  13. var_dump($rowData);
  14. }
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement