本文整理匯總了PHP中DbConnect::queryFood方法的典型用法代碼示例。如果您正苦於以下問題:PHP DbConnect::queryFood方法的具體用法?PHP DbConnect::queryFood怎麽用?PHP DbConnect::queryFood使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DbConnect
的用法示例。
在下文中一共展示了DbConnect::queryFood方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: while
<table id ="bottomTable">
<tr>
<td><a href = "/order.php?type=1&rest=1">按餐廳點餐</a></td>
<td><a href = "/order.php?type=2&style=1">按類型點餐</a></td>
</tr>
</table>
</div>
<?php
echo "<div class=\"submit\" onclick=\"location.href='/modify.php';\">\n 請注冊後訂餐\n </div>";
?>
<div id="menu">
<?php
if (!isset($_GET['style']) && !isset($_GET['rest'])) {
$con = DbConnect::connection();
$result = DbConnect::queryFood($con);
echo "<table>";
while ($row = mysql_fetch_array($result)) {
DbConnect::orderList($row);
}
echo "</table>";
mysql_close($con);
} else {
if (isset($_GET['style']) && !isset($_GET['rest'])) {
$con = DbConnect::connection();
$result = DbConnect::queryFoodByStyle($con, $_GET['style']);
while ($row = mysql_fetch_array($result)) {
DbConnect::orderList($row);
}
mysql_close($con);
} else {