I'm stuck. Is there a way to effectively xpath to an html table and then save all of that tables html? The following is what I mean but of course it doesn't work.
$doc = new DOMDocument(); @$doc->loadHTMLFile("Test.txt"); $xpath = new DOMXPath($doc); $x = $xpath->query("//div[@id='A-Div-Test']/table"); print $x->saveHTML();
Thanks, Fred
httpwebwitch
11:54 pm on Jul 19, 2009 (gmt 0)
save - to where? another text file?
Assuming your HTML is also valid XML, if you get the right XPATH, you should be able to select it and convert it into a string.