-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
35 lines (28 loc) · 1.06 KB
/
test.php
File metadata and controls
35 lines (28 loc) · 1.06 KB
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
<?php include('etc/config.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Test</title>
<link rel="stylesheet" type="text/css" href="css/style-test.css">
<?php $b = $SYSTEM['extlib']; printf('
<script type="text/javascript" src="%s"></script>
', $PATH_TO['jq'][$b]);
?>
<script type="text/javascript" src="lib/jquery.min.js"></script>
<script type="text/javascript" src="js/request-test.js"></script>
</head>
<body>
<form method="POST" action="" class="container">
<input type="text" name="cmd" id="data" class="field"/>
<input type="submit" value="Отправить" class="send" id="send" /><br/>
</form>
<center>
<span id="string">Результаты анализа известных слов для запроса: "<span class="command"></span>"</span>
</center>
<div class="container">
<ul id="results" class="update">
</ul>
</div>
</body>
</html>