Skip to content

Instantly share code, notes, and snippets.

View mikevalstar's full-sized avatar

Mike Valstar mikevalstar

View GitHub Profile
<?php
$html = file_get_contents("http://finance.yahoo.com/futures?t=energy");
$dom = new DOMDocument();
$dom->recover = true;
$dom->strictErrorChecking = false;
@$dom->loadHTML($html);
$table = $dom->getElementsByTagName('table');
echo "Table: <br/>";