git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@294405 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Richard Quadling 2010-02-03 14:10:57 +00:00
parent 53f60bc6f5
commit 97ec448392

View file

@ -203,9 +203,9 @@ var_dump($res);
echo "<table border='1'>\n";
foreach ($res as $col) {
echo "<tr>\n";
foreach ($col as $item) {
foreach ($col as $item) {
echo " <td>".($item !== null ? htmlentities($item, ENT_QUOTES) : "&nbsp;")."</td>\n";
}
}
echo "</tr>\n";
}
echo "</table>\n";