I have decided to call upon the forces of the Super PHP Friends for this once and for all...
$sql_result = mysql_query($sql,$connection)
or die("Couldn't execute query.");
while ($row = mysql_fetch_array($sql_result)) {
echo "<table cellspacing=0 cellpadding=2 border=0 width=100%>";
echo "<tr>";
echo "<td valign=top width=50%>";
echo "<b>Example 1:</b> ".$row["TEST"]."</td>";
echo "<td valign=top width=50%>";
echo "<b>Example 2:</b> ".$row["TEST2"]."</td>";
echo "</tr>";
echo "<tr>";
echo "<td valign=top width=50%>";
echo "<b>Example 3:</b> ".$row["TEST3"]."</td>";
echo "<td valign=top width=50%>";
echo "<b>Example 4:</b> ".$row["TEST4"]."</td>";
echo "</tr>";
echo "</table>";
echo "<p>";
}
Show me the Oracle equivalent to this mysql snippet and you will be a god in my book.