对于我在上一篇文章中提出的含糊不清的问题表示抱歉。我正在为我的任务开发一个电子商务网站。我想要实现的是,当客户登录他的帐户时,他应该能够看到他所购买的所有商品的帐户。我正在使用表格订单来保留所有订单。我没有得到任何错误。我只得到了我创建的表格标题。
我正在使用的查询是:
$result = mysql_query("SELECT orderID, cust_firstname, cust_lastname,
cust_address, cust_phone, cust_country from orders
where cust_firstname =" .$_SESSION['user_name']);
请帮忙
谢谢
答案 0 :(得分:1)
$result = mysql_query("SELECT orderID,cust_firstname,cust_lastname,cust_address,cust_phone,cust_country from orders where cust_firstname ='" .$_SESSION['user_name']."'");