我应该在哪里归还假;?

时间:2014-10-27 08:04:36

标签: javascript php

我有一个购物车脚本工作正常,除非将项目添加到购物车后它跳转到页面顶部。我放置return false:的任何地方都会停止添加到shoppingcart.php页面的信息。

PHP就是这样:

<?php
    include("includes/db.php");
    include("includes/functions.php");

    if ( isset($_REQUEST['command']) && $_REQUEST['command'] == 'add' && $_REQUEST['productid']>0 ) {
        $pid=$_REQUEST['productid'];
        addtocart($pid,1);


    }
?>

Javascript就是这样:

<script language="javascript">
function addtocart(pid){
    document.form1.productid.value=pid;
    document.form1.command.value='add'; 
    document.form1.submit() ; 
    confirm('You have just added another item to the cart ') ;
}

这是功能页面。

<?php
function get_product_name($pid){
    $result=mysql_query("select name from employees where id=$pid");
    $row=mysql_fetch_array($result)or die(mysql_error());
    return $row['xname'];
}
function get_price($pid){
    $result=mysql_query("select price from xxxxxx where id=$pid");
    $row=mysql_fetch_array($result);
    return $row['price'];
}
function remove_product($pid){
    $pid=intval($pid);
    $max=count($_SESSION['cart']);
    for($i=0;$i<$max;$i++){
        if($pid==$_SESSION['cart'][$i]['productid']){
            unset($_SESSION['cart'][$i]);
            break;
        }
    }
    $_SESSION['cart']=array_values($_SESSION['cart']);
}
function get_order_total(){
    $max=count($_SESSION['cart']);
    $sum=0;
    for($i=0;$i<$max;$i++){
        $pid=$_SESSION['cart'][$i]['productid'];
        $q=$_SESSION['cart'][$i]['qty'];
        $price=get_price($pid);
        $sum+=$price*$q;
    }
    return $sum;
}
function addtocart($pid,$q){
    if($pid<1 or $q<1) return;

    if(is_array($_SESSION['cart'])){
        if(product_exists($pid)) return;
        $max=count($_SESSION['cart']);
        $_SESSION['cart'][$max]['productid']=$pid;
        $_SESSION['cart'][$max]['qty']=$q;
    }
    else{
        $_SESSION['cart']=array();
        $_SESSION['cart'][0]['productid']=$pid;
        $_SESSION['cart'][0]['qty']=$q;
    }
}
function product_exists($pid){
    $pid=intval($pid);
    $max=count($_SESSION['cart']);
    $flag=0;
    for($i=0;$i<$max;$i++){
        if($pid==$_SESSION['cart'][$i]['productid']){
            $flag=1;
            break;
        }
    }
    return $flag;
}
?>

或者我应该使用其他请求吗?

0 个答案:

没有答案