You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$SQL="SELECT product_name,orderdetails.quantity,(orderdetails.quantity*unit_price) AS totalPerProduct,DATE_FORMAT(paymentdate,'%M %d %Y') AS date , is_cancelled
FROM orderdetails,product,transactions,payment
WHERE orderid=".$orderId."
AND orderdetails.productid=product.productid
AND transactions.transactionid=orderdetails.orderid