7e47ce238b
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
50 lines
1.9 KiB
PHP
50 lines
1.9 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title><?php echo $_title_; ?></title>
|
|
<link href="css/index.css" rel="stylesheet" type="text/css" />
|
|
<link href="js/swfupload/css.css" rel="stylesheet" type="text/css" />
|
|
<script language="javascript" src="js/function.js"></Script>
|
|
<script language="javascript" src="js/My97DatePicker/WdatePicker.js"></Script>
|
|
<?php
|
|
if(is_array($js_src)){
|
|
for($i=0;$i<count($js_src);$i++){
|
|
echo "<script language=\"javascript\" src=\"".$js_src[$i]."\"></Script>\n";
|
|
}
|
|
}
|
|
?>
|
|
<script>
|
|
<?php echo $js_code; ?>
|
|
//
|
|
</script>
|
|
</head>
|
|
<body onload="this.focus();">
|
|
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
|
|
<form name="form1" action="<?php echo $_SERVER[PHP_SELF] ?>" method="post"<?php echo $form_property; ?>>
|
|
<tr>
|
|
<td><table width="100%" border="0" cellspacing="1" cellpadding="2">
|
|
<input type="hidden" name="_m" value="<?php echo $_m; ?>">
|
|
<input type="hidden" name="_cid" value="<?php echo $_cid; ?>">
|
|
<?php
|
|
if(is_array($form_hidden)){
|
|
foreach ($form_hidden as $key => $value){
|
|
echo "<input type=hidden name=\"".$key."\" value=\"".$value."\">\n";
|
|
}
|
|
}
|
|
?>
|
|
<?php for($i=0;$i<count($content);$i++){ ?>
|
|
<tr>
|
|
<td height="25" width="<?php echo $_width_?$_width_:80; ?>" align="right" bgcolor="#f5f5f5"><?php echo $content[$i][0]; ?></td>
|
|
<td><?php echo $content[$i][1] ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<td colspan="2" align="left"><?php echo $_submit_button_?$_submit_button_:"<input type=\"submit\" name=\"s1\" value=\"提 交\"> <input type=\"reset\" name=\"r1\" value=\"重 置\">"; ?></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
</form>
|
|
</table>
|
|
</body>
|
|
</html>
|