Hey,
How can I extract tables from an HTML file using reg exps?
Thanks,
Julien
preg_match_all('/<table>+.*<\/table>+/is',$html_file,$array);
print_r($array);
And what if there is some args to the table tag?
Thanks.