<?php 

// Create a database connection
$conn oci_connect('hr''hr''//localhost/XE');

$stid oci_parse($conn'SELECT * FROM product');
oci_execute($stidOCI_DEFAULT);

print 
'<table border="1">';
while (
$row oci_fetch_array($stidOCI_RETURN_NULLS)) {
  print 
'<tr>';
  foreach (
$row as $item) {
    print 
'<td>'.
          (
$item htmlentities($item) : '&nbsp;').'</td>';
  }
  print 
'</tr>';
}
print 
'</table>';

?>