I just tried to develop a small e-commerce site, i used database to store the shopping information for a paticular customer... BUt i need to calculate the total price order a that particular time.
i was able to fetch the particular product but need to calculate the total cost can anyone help me out.
example:
PHP Code:$sql=$cc->query("SELECT * FROM temp_order where uname='$uname' ");
while($fet=$cc->fetch($sql)){
$user=$fet['uname'];
$product_price=$fet['product_price'];
User Price
$uname $product_price
}
Total:(??);//need to get the total here.









Bookmarks