$query = "select * from dream_posting where catagory='$catagory'";
$result = ora_parse($cursor, $query);
$result = ora_exec($cursor);
echo "Product Name | Description | First Bid |
";
// fetch rows from cursor
while (ora_fetch($cursor)) {
$pid = ora_getcolumn($cursor, 0);
$name = ora_getcolumn($cursor, 1);
$description = ora_getcolumn($cursor, 7);
$firstbid = ora_getcolumn($cursor, 5);
printf("%s | %s | %s |
", $pid, $catagory, $name, $description, $firstbid);
}
echo "";
ora_close($cursor);
ora_logoff($connHandle);
?>