-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.php
37 lines (32 loc) · 1 KB
/
query.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
<!-- 查询页 -->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>查询页</title>
<link rel="stylesheet" href="/css/query.css">
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<?php error_reporting(0); ?>
<?php
include_once dirname(__FILE__) . '/requirements/global.php';
include_once dirname(__FILE__) . '/requirements/opertions.php';
?>
<?php if (isset($_COOKIE['user'])) : ?>
<div class="wrapper">
<h1>欢迎来到唐诗查询系统</h1>
<div class="search">
<label for="query">输入以查询:</label>
<div><input type="text" name="query_string" id="query"></div>
<span><a href="/logout.php">退出登录</a></span>
</div>
<div class="count"></div>
<div class="content-box"></div>
</div>
<script src="/js/query.js"></script>
<script src="/js/toQueryInfo.js"></script>
<?php else : redirect('/login.php') ?>
<?php endif ?>
</body>
</html>