Late Model National Point Standings

Results Sponsored By:

$x=1;
$xml = new DOMDocument();
$xml->load(“http://www.imca.com/points/LM__np.xml”, LIBXML_NOBLANKS);foreach($xml->getElementsBytagName(‘DIVISION’) as $DIVISION)
{$points = $DIVISION->getElementsByTagName(‘POINTS_THROUGH’)->item(0)->firstChild->nodeValue;
echo ‘
‘;}foreach($xml->getElementsBytagName(‘DRIVER’) as $DRIVER){$DR_NAME = $DRIVER->getElementsByTagName(‘DR_NAME’)->item(0)->firstChild->nodeValue;
$DR_POINTS = $DRIVER->getElementsByTagName(‘DR_POINTS’)->item(0)->firstChild->nodeValue;if($x%2==0)
$bgcolor=”#333333″;
else
$bgcolor=”";echo ‘
‘;
$x++;
}
?>

Points through ‘.$points.’ ‘.$DR_NAME.’ ‘.$DR_POINTS.’