データベースから顧客の注文を取得しようとしていますが、現在持っているコードには1つの注文のデータしか表示されていませんが、顧客は複数の注文を行う可能性があります。このため、foreachループを追加する必要があることはわかっていますが、それらは初めてであり、正確な場所とコードでの使用方法がわかりません。私の$order_id変数は両方の$order_idを示しているので、$ order_detailより上に配置する必要があると思います。したがって、order_idごとに詳細を表示します。
function viewOrders($session_mem_id){
//This block grabs the orders
$order_list = "";
//Selecting all the orders in the table from that member
$sql = mysql_query("SELECT `order_id` FROM `transactions` WHERE `mem_id` = $session_mem_id") or die(mysql_error());
$orderCount = mysql_num_rows($sql);
if ($orderCount > 0) {
while($row = mysql_fetch_array($sql)){
//creating variables from the information
$order_id = $row["order_id"];
}
$order_details = mysql_query("SELECT * FROM `transactionDetails` WHERE `order_id` = $order_id") or die(mysql_error());
$orderDetailsCount = mysql_num_rows($order_details);
while($row = mysql_fetch_array($order_details)){
//creating variables from the information
$order_product_id = $row["Product_ID"];
$order_product_price = $row["Price"];
$order_product_quantity = $row["Quantity"];
$order_List .='<tr>';
$order_List .='<td>' . $order_id .'</td>';
//$order_List .='<td><a href="product.php?id=' . $order_product_id . '">' . $product_name . '</a></td>';
$order_List .='<td>£' . $order_product_price .'</td>';
$order_List .='<td>' .$order_product_quantity .'</td>';
$order_List .='</tr>';
}
} else {
//displaying a message if no products were found
$order_list = "You have no orders to display";
}
print_r($order_List);
}