当前位置:首页 » 网购平台 » 我想看购物车
扩展阅读
宁波奥德赛优惠价格 2021-03-15 14:26:02
丹尼斯购物卡能挂失么 2021-03-15 14:25:58
淘宝购物指纹验证失败 2021-03-15 14:24:44

我想看购物车

发布时间: 2021-02-12 05:22:49

A. 淘宝怎么查看女朋友的购物车,她手机不让我看

女友不给你看,你就不要想尽办法去看了,尊重对方是一切友和爱的前提,我想你也不想成为偷看女友隐私的猥琐男人吧?到了一定时候女友就会主动给你看的

B. 怎么查看我的购物车

进入淘宝或京东。里有面个购物车选项。直接进去就可以了。

C. 我是淘宝卖家,在哪里可以看到哪个宝贝被加入购物车

在淘宝卖家后台找到生意参谋,那里面有个商品分析,在商品分析里勾选加购件数,下方就会有个明细表单,你去试试。

D. 我是卖家买家加入了购物车可以看得到吗

加入购物车看不到的呢,只有下单后才能有显示.而且,现在下单后,没付款的,也不会显示买家信息.希望能帮到你

E. 我想做一个网上商店网,购物车应该怎么做呢

红尘之子,你好!
以下代码来自:月光软件站
我还给你发了一个购物系统文件。
一个购物车的原代码
一个购物车的代码,变量放在一个数组里,用session传递,
<?php
//////////接收页面变量,并放入数组
session_start();
if(!session_is_registered('stationery'))
session_register('stationery');
?>
<HTML>
<HEAD>
<TITLE>网上商城购物车</TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<link rel=stylesheet href=site.css>
<script language="JavaScript">
setTimeout("windowclose()",3000);
function windowclose()
{
window.close();
}
</script>
</head><body bgcolor=#FAFBDB>

<?php
if($id)
{
echo '<center><font
color=#2C20C1><b>您所选的商品已经放入购物车!</b></font></center><br>';
echo '<center><font color=#FF0000 size=+1><b>'.$name.'</b></font></center><br>';
?>

<?php
$i=count($stationery);
if($i==0)
{
$stationery[$i]['id']=$id;
$stationery[$i]['name']=$name;
$stationery[$i]['price']=$price;
$stationery[$i]['unit']=$unit;
$stationery[$i]['num']=1;
}
else
{
for($j=0;$j<$i;$j++)
{
if($stationery[$j]['id']==$id)//数组不为空,遍历
exit();
}
$stationery[$i]['id']=$id; //如没有记录,给数组增添一个元素
$stationery[$i]['name']=$name;
$stationery[$i]['price']=$price;
$stationery[$i]['unit']=$unit;
$stationery[$i]['num']=1; //数量初始化为1
}
}
?>
<center>该对话框将于3秒后关闭</center>

</body>

</html>

<HTML>
<HEAD>
<link rel=stylesheet href=site.css>
<TITLE> 网上商城购物清单 </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>

<BODY bgcolor=#FAFBDB>
<?php
/////////////响应清空,购买,重计算货款,以及查看购物车的功能。
if($pay)
if(!session_is_registered('loginame'))
{
echo "<center><font color=#3333CC><b>您还没有登录.</b></font></center><br>";
echo "<center><font
color=#2D2DFF><b>如果您已是商城注册会员,请直接登录:</b></font></center>";
echo "<FORM METHOD=POST ACTION='login.php'><table align=center width=50%><tr><td
align=right>
用户名</td><td align=left> <input type=text name=id size=12
maxlength=12></td></tr>
<tr><td align=right>密码</td><td align=left><input type=password name=pass
size=12 maxlength=12></td></tr>
</table><br>";
echo "<center><input type=submit name=submit value=登录></center><br></form>";
echo "<center><font color=#2D2DFF>如果您还没有成为商城会员,请在这里</font><a
href='login.php' target=_blank><b><font
color=#004623>注册</font></b></a><center>";
exit();
}
else
{
$connect=odbc_connect('apolloly','sa','');
$cou=count($stationery);
for($j=0;$j<$cou;$j++)
{
if($stationery[$j]['num']<=0)
{
continue;
}
$current=date("Y-m-d H:i");
$iid=$stationery[$j]['id'];
$nnum=$stationery[$j]['num'];
$sql="insert into
wuju_purchase(member_id,wenju_id,amount,order_date)values('$loginame','$iid','$nnum'
,'$current')";
$result=odbc_do($connect,$sql);

$query_hit="select hits from wenju where id='$iid'";
$va=odbc_do($connect,$query_hit);
$hit=odbc_result($va,hits);
$hit=$hit+1;

$updt="update wenju set hits='$hit' where id='$iid'";
$execute=odbc_do($connect,$updt);
}
unset($stationery);
echo '尊敬的 <font color=#0000CE><b>'.$loginame.':</b></font><br>';
echo
'<br><br><center>您已完成本次购买,我们立即开始服务,请静侯回音.</center
><br>';
echo '<center>如有疑问,请拨打服务电话:86-22-********</center>';
exit();
}
?>
<?php
if($destroy)
{
unset($stationery);
echo "<center><font color=red><b>购物车已经清空,请重新选择.</b></font></center>";
exit();
}
if($action=='get')
{
$size=count($stationery);
if($size==0)
{
echo '<center><font color=red><b>购物车内没有任何物品.</b></font></center>';
exit();
}
if($size!=0)
{
echo '<FONT
color=#5555FF><b>您在网上商城的购物清单,请查对:</b></FONT>';
?>

<table width=400 align=center border=1 bordercolor=#49B7BC bgcolor=#C1C1C1
bordercolordark=#DEEEF1
bordercolorlight=#2E626B cellspacing=0 cellpadding=5>
<tr><td align=center width=35%><b>商品名称</b></td><td align=center
width=15%><b>单位</b></td><td align=center
width=15%><b>价格</b></td>
<td align=center width=15%><b>数量</b></td><td align=center
width=20%><b>货款</b></td></tr>

<?php
$aa=1;
$total=0;
echo '<FORM METHOD=POST ACTION="'.$PHP_SELF.'?action=get">';
for($s=0;$s<$size;$s++)
{
$digit[$s]='value'.$aa++;
if(isset($$digit[$s]))
{
$stationery[$s]['num']=$$digit[$s];
}
if($$digit[$s]<0)
{
$stationery[$s]['num']=1;
}
$money=$stationery[$s]['price']*$stationery[$s]['num'];
if($money==0)
{
continue;
}
echo '<tr><td align=center>'.$stationery[$s]['name'].'</td><td
align=center>'.$stationery[$s]['unit'].
'</td><td align=center>'.$stationery[$s]['price'].'</td><td align=center><input
type=text name='.$digit[$s].' size=3 maxlength=3
value='.$stationery[$s]['num'].'></td><td align=center>'.$money.'</td></tr>';
$total=$total+$money;
}
echo '<tr><td colspan=5 align=center>您本次购物的总货款是:人民币<font
color=#FF0000><b>'.$total.'</b></font>元。</td></tr>';
echo '</table><br><br>';
echo '<table width=300 border=0 align=center>';
echo '<tr><td align=center width=80><input type=submit name=destroy
value=清空购物车></td>';
echo '<td align=center width=30></a></td>';
echo '<td align=center width=80><input type=submit name=reset
value=重计算货款></td>';
echo '<td align=center width=30></a></td>';
echo '<td align=center width=80><input type=submit name=pay
value=已决定购买></td></tr>';
echo '</table></form><br><br>';
}
}
echo '<center><font
color=#4A68B5><b>*注:如果您打算在商品清单中取消某样商品,请在数量栏内置"0",点击 "
重计算货款"后,该商品即被删除.</b></font></center>';
echo '<center><font
color=#4A68B5><b>*注:当您按下"已决定购买",本次购买行为即生效,请细心操作.</b></font>
</center>';
?>

</BODY>
</HTML>

F. 怎样能看到我的购物车

打开淘宝,主页,下面有5个图标,第四个就是

G. 我想去“淘宝购物车”买东西,网址是多少啊

淘宝购物车不是一个地方,是淘宝买家的一个收藏想买的东西的工具!
进如你的淘宝页面,就找得到!

H. 我本来是想看东西,不小心点到购物车中去了,怎样打开购物车,加入到购物车的东西能退出吗

页面顶部“购物车”点进去,把放入购物车的东西删掉就行了~

I. 我刚刚在淘宝上买了东西,我想看看我的购物车,为什么加载不了

你好,购物车是在购物前没买前加入购物车的,方便以后购物时查看,已买的东西在我的宝贝里查看的,未发货的在待发货查看,已发货的没签收在待收货查看,请采纳,不懂再来问我

J. 淘宝卖家查看购物车 怎么查看我的购物车

登录自己的账号就可以看到