
bschultz
-
Posts
486 -
Joined
-
Last visited
Community Answers
-
bschultz's post in simple_html_dom.php help was marked as the answer
I got it...
echo "<table border= '1'>"; $html = str_get_html($_POST['stats']); $html->find("table"); foreach($html->find('tr') as $row) { echo "<tr>"; foreach ($row->find('td') as $content) { echo "<td>"; echo $content->plaintext; echo "</td>"; } echo "</tr>"; } echo "</table>";