<?php
$html = new DOMDocument();
$html->loadHtmlFile( 'report.html' );
$xpath = new DOMXPath( $html );
$results = $xpath->evaluate('/html/body/div/table[2]/tr/td[3]');
foreach ($results as $result)
{
{
echo $result->nodeValue."\r\n";
}
}
?>
returns
GTkio94312
10/24/2011 10:21:45
01:19:46
I tried
echo $result->nodeValue->item[0];
to only get
GTkio94312
but it returns an empty line. Where's my fault?