7e47ce238b
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
49 lines
1.8 KiB
PHP
49 lines
1.8 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" />
|
|
<script language="javascript" src="js/function.js"></Script>
|
|
<script>
|
|
function comment_ok(){
|
|
var obj=document.comment;
|
|
if(obj.text.value==""){
|
|
alert("请输入内容!");
|
|
obj.text.focus();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
//
|
|
function del_comment(id){
|
|
var a=confirm("确认删除该条留言吗?");
|
|
if(a==true){
|
|
document.comment._a.value="delete";
|
|
document.comment.id.value=id;
|
|
document.comment.submit();
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="this.focus();">
|
|
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="table_border">
|
|
<tr>
|
|
<td height="24" style="font-weight:bold;" class="table_head"> <?php echo $_title_; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#fffffff"><table width="100%" border="0" cellspacing="1" cellpadding="3" style="table-layout:fixed;word-break:break-all;word-wrap:break-word;">
|
|
<?php for($i=0;$i<count($content);$i++){ ?>
|
|
<tr>
|
|
<td 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=\"button\" name=\"s1\" value=\"关 闭\" onclick=\"window.close()\"> <input type=\"button\" name=\"s1\" value=\"打 印\" onclick=\"window.print()\">"; ?></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|