真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Ajax表單提交數(shù)據(jù)

1.提交數(shù)據(jù):

創(chuàng)新互聯(lián)專業(yè)成都網(wǎng)站設(shè)計、成都網(wǎng)站制作,集網(wǎng)站策劃、網(wǎng)站設(shè)計、網(wǎng)站制作于一體,網(wǎng)站seo、網(wǎng)站優(yōu)化、網(wǎng)站營銷、軟文平臺等專業(yè)人才根據(jù)搜索規(guī)律編程設(shè)計,讓網(wǎng)站在運行后,在搜索中有好的表現(xiàn),專業(yè)設(shè)計制作為您帶來效益的網(wǎng)站!讓網(wǎng)站建設(shè)為您創(chuàng)造效益。

提交

    

2.創(chuàng)建addCate.php表單加入購物車操作

//01.接收傳遞過來的參數(shù)

$productid=intval($_POST['productid']);//接受的為數(shù)據(jù) 可以進行×××約束

$num=intval($_POST['num']);

//02.準備要添加購物車數(shù)據(jù)

session_start();

$userid=$_SESSION['userid'];//得到用戶id

//根據(jù)產(chǎn)品id 進行數(shù)據(jù)庫查詢 得到商品單價

try{

 $pdo=new PDO("MySQL:host=localhost;dbname=username","root","root",array(PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION));

$pdo->query('set names utf8);

$sql="select price from shop_product where id=?";

$stmt=$pdo->prepare($sql);

$stmt->execute(array($productid));

$data=$stmt->fetch(PDO::FETCH_ASSOC);

$price=$data['price'];

$createtime=time();

//03.完成購物車數(shù)據(jù)添加,進行預(yù)處理

$sql="insert into shop_cart(productid num userid price createtime)valur(?,?,?,?,?)";

$stmt=$pdo->prepare($sql);

$stmt->execute(array($product,$num,$price,$userid,$price,$createtime));

$rows=$stmt->rowcount();

}catch(PDO::Exception $e)

{

echo $e->getMessage();

}

//04.返回最后添加的結(jié)果

if($rows){

$response=array(

      'errno'=>0;

      'errmsg'=>'success’,

    ‘data'=>true,

)

}else{

$response=array(

    'errno'=>-1;

     'errmsg'=>'fail’,

    ‘data'=>fals,

)

}

echo json_encode($response);

3.數(shù)據(jù)表

shop_cart:

    id (bigint(20)),product_id(bigint(20)), userid(bigint(20)), num(int(10)默認1) ,price(float8,2), createtime(int(10)).

shop_product:


分享文章:Ajax表單提交數(shù)據(jù)
URL標題:http://weahome.cn/article/iieesj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部