文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>列出所有购物车中的清单的程序

列出所有购物车中的清单的程序

时间:2007-02-17  来源:PHP爱好者

这是我当时写的一个列出所有购物车中的清单的程序,各位可自己根据需要改写一下
<?php
ob_start();
session_start()                 ;
/*
$s=array("id" => 6, "name" => "测试a", "price" => "6", "count" =>3);
$t=array("id" => 7, "name" => "测试b", "price" => "7", "count" =>15);
$u=array("id" => 8, "name" => "测试c", "price" => "8", "count" =>21);
$rst=array($s, $t, $u);

*/
require_once("HTML/IT.php");
$tpl    = new HTML_Template_IT("./");
//读取模板文件           
$tpl->setRoot("./");
$tpl->loadTemplatefile("listcart.html", true, true);
require_once "../classes/cart.php" ;
$cart = new cart   ;
//    $cart->addData($rst);
$i=count($_POST[lines])    ;
if($_POST["emptyAll"]==true)
{
//如果清空条件为真
$cart->emptyAll()    ;
}else{
//如果用户提交更新
if( $i > 0)
{
//如果提交过来的数据大于一个商品
$addData = $_POST[lines]    ;
foreach($addData as $key=>$val)
{
if($val["del"]==true)
{    
$cart->emptyOne($key)        ;
unset($addData[$key])            ;
}
}
$cart->addData($addData)    ;
}
}
$dat = $cart->getData();
if(count($dat) > 0)
{
foreach($dat as $key=>$val)
{        
$tpl->setCurrentBlock("lines") ;
//        $tpl->setVariable($lan) ;
$tpl->setVariable("id", $key) ;        
$tpl->setVariable("i" , $key) ;    
$tpl->setVariable("totalCount" , $cart->getSortCount()) ;
$tpl->setVariable("totalMoney" , $cart->getTotalCost()) ;
$tpl->setVariable($val) ;    
$tpl->parseCurrentBlock("lines") ;    
}
}
//替换模板页面中的标记
$tpl->setCurrentBlock("page") ;
if($key==false)$key=0;
$tpl->setVariable("i" , $key) ;    
$tpl->setVariable("mytitle", "我的购物篮") ;    
//    $tpl->setVariable($language->getLanUrl()) ;    
$tpl->parseCurrentBlock("page") ;  

//显示页面
$tpl->show();

ob_end_flush();
?>


php爱好者站 http://www.phpfans.net 为phper提供一切资讯.
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载