This question already has answers here:
Answer
Solution:
You need to close table
and add tr
as it's tag for rows:
<?php
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
echo '<tr>';
foreach ($row as $item) {
echo " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") . "</td>\n";
}
echo '</tr>';
}
echo '</table>';
?>
Source