www.gusucode.com > 典当行电子商务网站php网站源码程序 > code/tools/admin/dd_yuyue_look.php

    <?php
define("ROOTPATH", "../../");
include(ROOTPATH."includes/admin.inc.php");
include(ROOTPATH."includes/pages.inc.php");
include("language/".$sLan.".php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link  href="css/style.css" type="text/css" rel="stylesheet">
<title><?php echo $strAdminTitle; ?></title>
</head>

<body>

<?php

	$id=$_GET["id"];

	$msql->query("select * from {P}_tools_code where id='$id'");
	if($msql->next_record()){
		$name=$msql->f('name');
		$tel=$msql->f('tel');
		$phone=$msql->f('phone');
		$code=$msql->f('code');
		$code=nl2br($code);
		$position=$msql->f('position');
	}
?> 
<div class="listzone">
<table width="100%" border="0" cellspacing="0" cellpadding="5" align="center">
  <tr>
    <td class="biaoti" width="55" align="center"><?php echo $strName; ?>:</td>
	<td class="content"><?php echo $name ?></td>
  </tr>
  <tr>
    <td class="biaoti" width="55" align="center"><?php echo $strTel; ?>:</td>
	<td class="content"><?php echo $tel ?>&nbsp;</td>
  </tr>
  <tr>
    <td class="biaoti" width="55" align="center"><?php echo $strPhone; ?>:</td>
	<td class="content"><?php echo $phone ?></td>
  </tr>
  <tr>
    <td class="biaoti" width="55" align="center"><?php echo $strOrder; ?>:</td>
	<td class="content"><?php echo $code ?></td>
  </tr>
  <tr>
    <td class="biaoti" width="55" align="center"><?php echo $strPic; ?>:</td>
	<td class="content"><img src="../../<?php echo $position?>" /></td>
  </tr>
</table>
</div>
</body>
</html>