📄 showdd.php
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>商品订单</title>
<link rel="stylesheet" type="text/css" href="css/font.css">
<style type="text/css">
<!--
@media print{
div{display:none}
}
.style3 {color: #990000}
-->
</style>
</head>
<?php
include("conn/conn.php");
$id=$_GET[id];
$sql=mysql_query("select * from tb_dingdan where id='".$id."'",$conn);
$info=mysql_fetch_array($sql);
$spc=$info[spc];
$slc=$info[slc];
$arraysp=explode("@",$spc);
$arraysl=explode("@",$slc);
?>
<body topmargin="0" leftmargin="0" bottommargin="0">
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
<tr align="center" bgcolor="#FFCF60">
<td height="20" colspan="2">商品订单</td>
</tr>
<tr>
<td width="448" height="20">订单号:<?php echo $info[dingdanhao];?></td>
<td width="152"><div align="right">
<script>
function prn(){
document.all.WebBrowser1.ExecWB(7,1);
}
</script>
<object ID='WebBrowser1' WIDTH=0 HEIGHT=0 CLASSID='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2'></object>
<input type="button" value="打印预览" class="buttoncss" onClick="prn()">
<input type="button" value="打印" class="buttoncss" onClick="window.print()"></div></td>
</tr>
<tr>
<td height="20" colspan="2">商品列表(如下):</td>
</tr>
</table>
<table width="500" height="60" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#666666"><table width="500" border="0" align="center" cellpadding="0" cellspacing="1">
<tr bgcolor="#FFCF60">
<td width="153" height="20">商品名称</td>
<td width="80">市场价</td>
<td width="80">会员价</td>
<td width="80">数量</td>
<td width="101">小计</td>
</tr>
<?php
$total=0;
for($i=0;$i<count($arraysp)-1;$i++){
if($arraysp[$i]!=""){
$sql1=mysql_query("select * from tb_shangpin where id='".$arraysp[$i]."'",$conn);
$info1=mysql_fetch_array($sql1);
$total=$total+=$arraysl[$i]*$info1[huiyuanjia];
?>
<tr bgcolor="#FFFFFF">
<td height="20"><?php echo $info1[mingcheng];?></td>
<td height="20"><?php echo $info1[shichangjia];?></td>
<td height="20"><?php echo $info1[huiyuanjia];?></td>
<td height="20"><?php echo $arraysl[$i];?></td>
<td height="20"><?php echo $arraysl[$i]*$info1[huiyuanjia];?></td>
</tr>
<?php
}
}
?>
<tr bgcolor="#FFFFFF">
<td height="20" colspan="5">
总计费用:<?php echo $total;?>
</td>
</tr>
</table></td>
</tr>
</table>
<table width="460" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="81" height="20">下单人:</td>
<td colspan="3"><?php echo $info[xiadanren];?></td>
</tr>
<tr>
<td height="20">收货人:</td>
<td height="20" colspan="3"><?php echo $info[shouhuoren];?></td>
</tr>
<tr>
<td height="20">收货人地址:</td>
<td height="20" colspan="3"><?php echo $info[dizhi];?></td>
</tr>
<tr>
<td height="20">邮 编:</td>
<td width="145" height="20"><?php echo $info[youbian];?></td>
<td width="66">电 话:</td>
<td width="158"><?php echo $info[tel];?></td>
</tr>
<tr>
<td height="20">E-mail:</td>
<td height="20"><?php echo $info[email];?></td>
<td height="20"> </td>
<td height="20"> </td>
</tr>
<tr>
<td height="20">送货方式:</td>
<td height="20"><?php echo $info[shff];?></td>
<td height="20">支付方式:</td>
<td height="20"><?php echo $info[zfff];?></td>
</tr>
<tr>
<td height="20" colspan="4"><span class="style3">请您在一周内按您的支付方式进行汇款,汇款时注明您的订单号!汇款后请及时通知我们</span></td>
</tr>
<tr>
<td height="20"> </td>
<td height="20"><div align="center"><input type="button" onClick="window.close()" value="关闭窗口" class="buttoncss"></div></td>
<td height="20">创建时间:</td>
<td height="20"><?php echo $info[time];?></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -