";
print "There was a statement execution error: " . htmlentities($e['message']).
" ";
print "The error is located at character " . htmlentities($e['offset']+1) ."
of the query:
". htmlentities($e['sqltext']). " ";
echo "";
exit;
}
// Fetch the results in an associative array
print '';
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS+OCI_ASSOC)) {
print '';
foreach ($row as $item) {
print '| '.($item?htmlentities($item):' ').' | ';
}
print ' ';
}
print ' ';
// Close the Oracle connection
oci_close($conn);
?>
|