-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.php
42 lines (40 loc) · 1.07 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
<?php
ob_start();
//header("Content-Type: text/html; charset=utf-8");
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset = "utf-8"/>
<script src="KickStart/jquery-1.11.0.min.js"></script>
<script src="KickStart/js/kickstart.js"></script>
<link rel="stylesheet" href="KickStart/css/kickstart.css" media="all"/>
<link rel="stylesheet" href="css/index.css" media="all"/>
<title>Scoper</title>
</head>
<body>
<?php
$hisitem = array();
require('tophead.php');
ob_end_flush();
?>
<div id="logopic"> <img src="image/logo.png" alt="logo"/>
</div>
<form id="main_form" method="get" action="main/getweb.php" target="_blank">
<input id ="text1" type="text" name="con"/>
<button class="tooltip medium blue pop" value = 1 name="page"><i class ="icon-search"></i>Search</button>
</form>
<div class="history">
<p class="his">历史搜索:</p>
<div class="codebar">
<?php
for($i=0;$i<$total;$i++){
?>
<code>
<?php echo $hisitem[$i]?>
</code>
<?php }
?>
</div>
</div>
</body>
</html>