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. 淘寶賣家查看購物車 怎麼查看我的購物車
登錄自己的賬號就可以看到