2009-08-27 43 views
0

我正在写一个脚本,让用户放置物品在他们的篮子。到目前为止,这是非常复杂的,我想和他人谈一谈,看看他们能否提出更好的设计或者整理当前的设计。这里是我的代码,这并不能很好地工作(即有,我还没有得到解决的错误),以留言中显示我的意图:放入购物车脚本 - 一些设计的帮助,请

<?php 
session_start(); 
include_once("db_include.php5"); 
doDB(); 


if(!$_GET["productid"] || !$_GET["qty"]) { 
//the user has entered the address directly into their address bar, send them away (if=1 to let me know where the script branched) 
header("Location:index.php5?if=1"); 
exit(); 
} 

**//do select query to verify item id is valid, in case they entered data into the query string or the item has been removed from db** 
$check_sql = "SELECT * FROM aromaProducts1 WHERE id='".$_GET["productid"]."'"; 
$check_res = mysqli_query($mysqli, $check_sql) or die(mysqli_error($mysqli)); 

if(mysqli_num_rows($check_res) == 0) { 
**//item doesn't exist, redirect user** 
header("Location:index.php5?if=2"); 
exit(); 
} else if(mysqli_num_rows($check_res) != 0) { 
**//item exists 
//do select query to check for item id already in basket - if this item is already in the table associated with the user's session id (which will be added every time an item is), then we want to change the quantity only** 
$duplicate_sql = "SELECT qty FROM sessionBasket WHERE product_id='".$_GET["productid"]."' AND usersessid='".$_SESSION["PHPSESSID"]."'"; 
$duplicate_res = mysqli_query($mysqli, $duplicate_sql) or die(mysqli_error($mysqli)); 

if(mysqli_num_rows($duplicate_res) != 0) { 
**//item in basket - add another - fetch current quantity and add new quantity** 
$basketInfo = mysqli_fetch_array($duplicate_res); 
$currQty = $basket_info["qty"]; 
$add_sql = "UPDATE sessionBasket SET qty='".($_GET["qty"]+$currQty)."' WHERE usersessid='".$_SESSION["PHPSESSID"]."'AND product_id='".$_GET["productid"]."'"; 
$add_res = mysqli_query($mysqli, $add_sql) or die(mysqli_error($mysqli)); 

if($add_res !== TRUE) { 
**//wasn't updated for some reason - this is where my script currently breaks** 
header("Location:basketfailredirect.php5?error=add"); 
exit(); 
} else if($add_res === TRUE) { 
**//was updated - send them away** 
header("basket.php5?res=add"); 
exit(); 
} 


} else if(mysqli_num_rows($duplicate_res) == 0) { 
**//no existing items in basket, so we want to add the current item info associated with the user's id/session id** 

**//fetch product id, passed in query string from the product info page** 
$productid = $_GET["productid"]; 

**//sanitize possible inputs, if set - notes is a field added to the product info page for custom products, and we want to sanitize it if it's set - note that check_chars_mailto() is a function I have in the db_include file** 
$notes = isset($_GET["notes"])?trim(mysqli_real_escape_string(check_chars_mailto($_GET["notes"]))):""; 
**//if the user is logged in, their userid is stored in the session variable** 
$userid = $_SESSION["userid"]?$_SESSION["userid"]:""; 
**//not sure about the keep alive option - i.e. store basket contents even if the user doesnt register/sign in, but keeping the option there** 
$alive = $_SESSION["alive"]?$_SESSION["alive"]:"no"; 


**//insert query** 
$insert_sql = "INSERT INTO sessionBasket (userid, usersessid, date_added, keep_alive, product_id, qty, notes) VALUES (
'".$userid."', 
'".$_SESSION["PHPSESSID"]."', 
now(), 
'".$alive."', 
'".$productid."', 
'".$_GET["qty"]."', 
'".htmlspecialchars($notes)."')"; 
$insert_res = mysqli_query($mysqli, $insert_sql) or die(mysqli_error($mysqli)); 

if($insert_res === TRUE) { 
**//success** 
header("Location:basket.php5?res=add"); 
exit(); 
} else if($insert_res !== TRUE) { 
**//fail** 
header("Location:basketfailredirect.php5?error=add2"); 
exit(); 
} 
} 
} 
?> 

这实在是太复杂了,我 - 我想允许空字段,添加用户标识符(如果可用的话)(这在我的UPDATE查询中是缺失的)......这是距离一个好设计百万英里还是什么?

此外,当我尝试将项目添加到购物篮时,我现在得到一个错误:内部服务器错误500.我怀疑这是由于编码错误,因为我的搜索结果和产品查看页面工作,并且他们使用相同的服务器和这个脚本一样的数据库。

+1

auch。我的眼睛受伤......首先:在编辑器中将代码编写为代码。第二:尽可能给我们一些代码,以帮助解决您的问题......这只是InformationOverflow – peirix 2009-08-27 13:10:47

+0

我打算将它编辑在代码框中,呃,对不起。我知道这是一个很长的脚本,但我需要一个关于策略的一般意见,以及这段代码是否应该工作,所以我觉得有必要看看这一切。 – user97410 2009-08-27 13:16:52

回答

1

您应该考虑使用PHP内置的伪对象定向样式。

您还应该着眼于使用PHP框架,如Zend或CakePHP。即使你没有使用PHP框架,你也应该能够通过php的类和接口对象以面向对象的方式创建你的代码。

通过将代码分离到类和函数中,您可以使您的(和我们)的调试更加轻松,无论是现在还是将来在编辑代码时。

+0

我对编程非常陌生,所以迈向面向对象的一步是我宁愿在这个项目上避免的延迟。我目前的程序风格相处得很好,但我会牢记这一建议。在完成这个项目之后,我确实想提高自己的知识和应用程序的所有语言,而且OOP似乎是下一个合理的举措。 – user97410 2009-08-27 14:09:22