forked from willstudy/SearchEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (50 loc) · 1.6 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>基于语义的搜索引擎</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<div id="container">
<div id="heading">
<h1>语 义 搜 索</h1>
</div>
<div id="content">
<form action="./server.php" method="post">
<input class="search_text" name="search_text" type="text">
<input class="search_button" name="search_button" type="submit" value="搜 索" >
</form>
</div>
<div id="footing">
<script language=JavaScript>
today=new Date();
function initArray(){
this.length=initArray.arguments.length
for(var i=0;i<this.length;i++)
this[i+1]=initArray.arguments[i] }
var d=new initArray(
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六");
document.write(
"<div style='text-align: center'><font color=#0000FF style='font-size:9pt;font-family:fantasy'> ",
today.getFullYear(),"年 ",
today.getMonth()+1,"月 ",
today.getDate(),"日 ",
d[today.getDay()+1],
"</font></div>" );
</script>
<div style='text-align: center;margin-top:50px'>
<font color=grey style='font-size:8pt;'>
Copyright by USTC 2015 - 2016
</font>
</div>
</div>
</div>
</body>
</html>