forked from if-itb/IF3110-2015-T1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.php
27 lines (24 loc) · 865 Bytes
/
list.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
<!DOCTYPE html>
<html>
<head>
<title>list</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="board">
<a href="list.php"><h1>Simple StackExchange</h1></a>
<form action="search_list.php" method="post">
<input type="text" class="boxsearch" placeholder="Search.." name="search">
<input type="submit" class="posisisearch" value="Find" name="completedsearch">
</form>
<br>
<h5>Cannot find what you are looking for?
<a href="create.php" ><span class="ask">Ask here</span></a></h5>
Recently Asked Questions
<?php
include ("list_replace.php");
?>
</div>
</body>
</html>