-
Notifications
You must be signed in to change notification settings - Fork 1
/
show.php
37 lines (37 loc) · 1011 Bytes
/
show.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
include_once "conn/conn.php";
session_start();
?>
<html>
<head>
<meta charset="UTF-8" content="text/html">
<script type="text/javascript" src="js/chk.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/reg.css">
</head>
<body>
<div align="center">
<?php
include "top.php"; //banner
?>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="265" align="center" valign="top">
<?php
include "left.php"; //登录、搜索框
?>
</td>
<td align="center" valign="top">
<?php
if (@$_POST['action'] == 'l_found') {
include_once "normal_show.php";
}elseif ($_GET['action']== 'high'){
include_once "high_show.php";
}
?>
</td>
</tr>
</table>
</div>
</body>
</html>