Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- require('simple_html_dom.php');
- $html = file_get_html('http://flightplan.romatsa.ro/init/fpl/flightslr/LRCL/');
- $table = $html->find('table', 3);
- foreach($table->find('tr') as $row) {
- // initialize array to store the cell data from each row
- $rowData = array();
- foreach($row->find('td') as $cell) {
- // push the cell's text to the array
- $rowData[] = $cell->innertext;
- }
- var_dump($rowData);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement