profile_orderprint.php

来自「用PHP和MSSQL开发的sspace商城系统」· PHP 代码 · 共 30 行

PHP
30
字号
<?php
	/*
	+-------------------------------------------
	|
	|   Technology of Wane netware
	|   ========================================
	|   Powered by wan-e.net inc 
	|   (c) 2004 wane.net Power Services
	|   http://www.wan-e.net
	|   ========================================
	|   Web: http://www.wan-e.net
	|
	+-------------------------------------------
	|   Autohr	:	wsfuyibing
	+-------------------------------------------
	*/
	require $wane_root.'globals/class_code.php';
	$page_count	=	array(
		"$num_order",
		"{$tablepre}orders o 
		left join {$tablepre}storeinfo s ON (s.uid=o.uids)
		left join {$tablepre}sendout ss ON (o.sendoutway=ss.id)",
		"index.php?action=memcp&type=order",
		" where o.uid='$wane_uid'",
		"o.*,s.uid as suid,s.storename,ss.id as ssid,ss.title as sstitle,ss.spend as ssspend"
	);
	$query=$db->query("select $page_count[4] from $page_count[1] $page_count[3] order by o.addtime desc,o.uids");
	$keeporder = '';
	echo '<script>window.print();</script>';
?>	

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?