当前位置:  编程技术>php
本页文章导读:
    ▪php 购物车的简单实现代码与示例      1、cart.php 购物车       代码示例: <?php session_start();  $conn=mysql_connect()("localhost","root","admin");  mysql_select_db("songyu");  //检查数组元素出现次数  function check_count($array,$element)  {   $.........
    ▪php 购物车类的实现代码与应用举例      1、ShopCar.php 购物车类   代码示例: <?php class Shopcar { //商品列表 public $productList=array(); /** * * @param unknown_type $product 传进来的商品 * @return true 购物车里面没有该商品 */ public function chec.........
    ▪php实现购物车数量更新的代码一例      本文内容共分为二个部分,一是html表单,二是php处理部分。 1、表单部分: <form action="/blog_article/action/edit_num.html" method="post" name="car<?php $c_rs['id'];?>" id="car<?php $c_rs['id'];?>"> <input name="suliang[&l.........

[1]php 购物车的简单实现代码与示例
    来源: 互联网  发布时间: 2013-12-24

1、cart.php 购物车    
 

代码示例:

<?php
session_start();
 $conn=mysql_connect()("localhost","root","admin");
 mysql_select_db("songyu");
 //检查数组元素出现次数
 function check_count($array,$element)
 {
  $times=0;
  for($i=0;$i<count($array);$i++)
  {
   if($element==$array[$i])
   {
    $times++;
   }
  }
  return $times;
 }
if(isset()($_GET["p_id"]))
{
 $p_id=$_GET["p_id"];
}

$total_price=0;
 array_push($_SESSION["cart"], $p_id);
 
 $cart=$_SESSION["cart"];
 echo "your cart:<br/>";
 $new_array=array_count_values($cart);
 foreach ($new_array as $key => $value)
 {
  $sql="select * from product where id='".$key."'";
     $result=mysql_query()($sql);
     $out=mysql_fetch_array($result);
     echo $out[name]."---个数:".$value."--".($out[price]*$value)."<br/>";
     $total_price=$total_price+($out[price]*$value);
 }
 echo "<br/><br/>";
 echo "-----------总价--------------<br/>";
 echo $total_price;
?>
<a href="/blog_article/product.html">回s</a>

2、login.php 登录页
 

代码示例:
<?php session_start();
if(isset($_SESSION["user"]))
{
 unset($_SESSION["user"]);
}
if(isset($_SESSION["cart"]))
{
 unset($_SESSION["cart"]);
}
?>
<form action="/blog_article/product_index.html" method="post">
  username:<input type="text" name="username"/><br/><br/>
  password:<input type="password" name="password"/><br/><br/>
  <input type="submit" name="submit"/>
</form>

3、product.php 产品页
 

代码示例:
<?php
session_start();
 $conn=mysql_connect("localhost","root","admin");
 mysql_select_db("songyu");
$sql_product="select * from product";
  $res=mysql_query($sql_product);
  if(!isset($_SESSION["cart"]))
  {
   $_SESSION["cart"]=array();
  }
  while($out2=mysql_fetch_array($res))
  {
   echo "<a href='/blog_article/cart/p_id/.html".$out2[id]."'>".$out2[name]."</a><br/>";
   echo $out2[price]."<br/>";
   echo "<hr>";
  }
?>

4、product_index.php 产品索引页
 

代码示例:
<?php session_start();
 $conn=mysql_connect("localhost","root","admin");
 mysql_select_db("songyu");
 $sql="select * from user where username='".$_POST["username"]."' and password='".$_POST["password"]."'";
 $result=mysql_query($sql);
 $out=mysql_fetch_array($result); //www.
 if(!$out)
 {
  echo "wrong!";
 }
 else
 {
  $_SESSION["user"]=$out[id];
  echo "<script>window.location.href='product.php'</script>";
 }
?>

    
[2]php 购物车类的实现代码与应用举例
    来源: 互联网  发布时间: 2013-12-24

1、ShopCar.php 购物车类
 

代码示例:
<?php
class Shopcar
{
//商品列表
public $productList=array();
/**
*
* @param unknown_type $product 传进来的商品
* @return true 购物车里面没有该商品
*/
public function checkProduct($product)
{
for($i=0;$i<count($this->productList);$i++ )
{
if($this->productList[$i]['name']==$product['name'])
return $i;
}
return -1;
}
//添加到购物车
public function add($product)
{
$i=$this->checkProduct($product);
if($i==-1)
array_push($this->productList,$product);
else
$this->productList[$i]['num']+=$product['num'];
}
//删除
public function delete($product)
{
$i=$this->checkProduct($product);
if($i!=-1)
array_splice($this->productList,$i,1);
}
//返回所有的商品的信息
public function show()
{
return $this->productList;
}
}

2、productList.html
 

代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>php购物车-商品列表页面-www.</title>
<script type="text/javascript" src='/blog_article/jquery.min.js'></script>
<script type="text/javascript">
function buy(i)
{
var num=$(':input[name=num]')[i].value;
var name=$('[name=name]')[i].innerHTML;
var price=$('[name=price]')[i].innerHTML;
alert(num+name+price);
$.ajax({
type:'post', //传送的方式,get/post
url:'index.php', //发送数据的地址
cache:'false',
data:'num='+num+"&name="+name+"&price="+price,
success:function(data)
{
alert(data);
}
})
}
</script>
</head>
<body>
<table>
<tr><td>商品编号</td><td>商品名称</td><td>价格</td><td>数量</td><td>购买</td></tr>
<tr><td>0</td><td><label name='name' >商品1</label></td><td><label name='price'>1</label>
</td><td><input name='num' type='text' value='1' /></td><td><a onclick='buy(0)'><u><font color='blue'>购买</font></u></a></td></tr>
<tr><td>1</td><td><label name='name' >商品2</label></td><td><label name='price'>2</label>
</td><td><input name='num' type='text' value='1' /></td><td><a onclick='buy(1)'>购买</a></td></tr>
<tr><td>2</td><td><label name='name' >商品3</label></td><td><label name='price'>1</label>
</td><td><input name='num' type='text' value='1' /></td><td><a onclick='buy(2)'>购买</a></td></tr>
<tr><td>3</td><td><label name='name' >商品4</label></td><td><label name='price'>1</label>
</td><td><input name='num' type='text' value='1' /></td><td><a onclick='buy(3)'>购买</a></td></tr>
<tr><a href='/blog_article/show.html'>查看购物车</a></tr>
</table>
</body>
</html>

3、index.php
 

代码示例:
<?php
require 'Shopcar.class.php';
session_start();
$name=$_POST['name'];
$num=$_POST['num'];
$price=$_POST['price'];
$product=array('name'=>$name,'num'=>$num,'price'=>$price);
print_r($product);
if(isset()($_SESSION['shopcar']))
$shopcar=unserialize($_SESSION['shopcar']);
else
$shopcar=new Shopcar();
$shopcar->add($product);
$_SESSION['shopcar']=serialize($shopcar);
?>

4、show.php
 

代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>商品信息展示页_www.</title>
</head>
<body>
<table>
<tr><td>商品编号</td><td>商品名称</td><td>价格</td><td>数量</td></tr>
<?php
require 'Shopcar.class.php';
session_start();
$shopcar=unserialize($_SESSION['shopcar']);
print_r($shopcar);
$productList=$shopcar->productList;
foreach ($productList as $product){
?>
<tr><td>1</td><td><label ><?php echo $product['name']?></label></td><td><label name='price'><?php echo $product['price']?></label>
</td><td><input name='num' type='text' value='<?php echo $product['num']?>' /></td></tr>
<?php }?>
</table>
</body>
</html>

    
[3]php实现购物车数量更新的代码一例
    来源: 互联网  发布时间: 2013-12-24

本文内容共分为二个部分,一是html表单,二是php处理部分。

1、表单部分:

<form action="/blog_article/action/edit_num.html" method="post" name="car<?php $c_rs['id'];?>" id="car<?php $c_rs['id'];?>">
<input name="suliang[<?php echo $c_rs['sp_id'];?>]" type="text" id="suliang[<?php echo $c_rs['sp_id'];?>]" value="<?php echo $c_rs['suliang'];?>"/>
<input type="submit" name="button" id="button" value="更新购物车" />
</form>

2、php处理代码
 

代码示例:

<?php
/**
 * php购物车 处理代码
 * Edit www.
*/
require 'config.inc.php'; //配置文件
require 'checklogin.php'; //登录检测
$username = $_SESSION['username'];
$action = $_GET['action'];
switch ($action) {
case "edit_num":

$arr = $arr = $_POST['suliang'];
foreach($arr as $key=>$value){
$sqlgx = "update `cartemp` set suliang='$value' where username='".$username."' and flag=0 and sp_id='".$key."'";
mysql_query()($sqlgx, $conn);
echo "<script>location.href='/blog_article/shopcat.html'</script>";
}
break;

case "null":
$null_sql = "delete from `cartemp` where username='$username' and flag=0 ";
mysql_query($null_sql, $conn);
echo "<script>location.href='/blog_article/shopcat.html'</script>";
break;
case "del":
$id = $_GET['id'];
$del_sql = "delete from `cartemp` where id=$id";
mysql_query($del_sql, $conn);
echo "<script>location.href='/blog_article/shopcat.html'</script>";
break;
}
?>


    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3