File: groceries-display2.php
Groceries Display2 Example Example Groceries Display2 Example Name Code Price Quantity OnSale "); } // Obtain and display result set table using SQL statement. if($result_set) { while(odbc_fetch_row($result_set)) { echo " "; for($col = 2; $col <= 6; $col++) { echo "" . odbc_result($result_set, $col) . " "; } echo "\n"; } } else { die("Could not form result set."); } ?>