gusucode.com > 软件公司网站源码程序 > 软件公司网站源码程序/tools/admin/mark_detail.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>
<script type="text/javascript" src="../../base/js/base.js"></script>
<script type="text/javascript" src="../../base/js/form.js"></script>
<script type="text/javascript" src="../../base/js/blockui.js"></script>
</head>

<body>
<div class="listzone">
<table width="100%" border="0" cellspacing="0" cellpadding="5" align="center">
<?php
	$id=$_GET["id"];
	$msql->query("select * from {P}_tools_markcon where id='$id'");
		while($msql->next_record()){
		$starttime=$msql->f("starttime");
		$endtime=$msql->f("endtime");
		$arrivaltime=$msql->f("arrivaltime");
		$keeptime=$msql->f("keeptime");
		$roomtype=$msql->f("roomtype");
		$marknumber=$msql->f("marknumber");
		$markperson=$msql->f("markperson");
		$paytype=$msql->f("paytype");
		$markname=$msql->f("markname");
		$marktype=$msql->f("marktype");
		$livename=$msql->f("livename");
		$livetype=$msql->f("livetype");
		$markcontact=$msql->f("markcontact");
		$markmail=$msql->f("markmail");
		$markother=$msql->f("markother");
?>

				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkStartTime; ?>:</td>
					<td class="content"><?php echo $starttime ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkEndTime; ?>:</td>
					<td class="content"><?php echo $endtime ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkArrivalTime; ?>:</td>
					<td class="content"><?php echo $arrivaltime ?>时</td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkKeepTime; ?>:</td>
					<td class="content"><?php echo $keeptime ?>时</td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkRoomType; ?>:</td>
					<td class="content"><?php echo $roomtype ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkNumber; ?>:</td>
					<td class="content"><?php echo $marknumber ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkPerson; ?>:</td>
					<td class="content"><?php echo $markperson ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkPayType; ?>:</td>
					<td class="content"><?php echo $paytype ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkName; ?>:</td>
					<td class="content"><?php echo $markname ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkPersonType; ?>:</td>
					<td class="content"><?php echo $marktype ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkLiveName; ?>:</td>
					<td class="content"><?php echo $livename ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkLiveType; ?>:</td>
					<td class="content"><?php echo $livetype ?></td>
				</tr>
				<tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkContact; ?>:</td>
					<td class="content"><?php echo $markcontact ?></td>
				</tr>
                <tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkMail; ?>:</td>
					<td class="content"><?php echo $markmail ?></td>
				</tr>
                <tr>
					<td class="biaoti" width="90" align="right"><?php echo $strMarkOther; ?>:</td>
					<td class="content"><?php echo $markother ?></td>
				</tr>
  <?php
}
?>
</table>
</div>
</body>
</html>