48 lines
1.7 KiB
PHP
48 lines
1.7 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Search</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="style.css"/>
|
|
</head>
|
|
<body>
|
|
<table style="margin: 0px auto;" class="stat">
|
|
<tr>
|
|
<th>LASUCA CONTROLS SEARCH</th>
|
|
<th><a href="../overview.php">BACK TO OVERVIEW</a></th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th colspan="2">
|
|
<form action="test.php" method="GET">
|
|
<input type="text" placeholder="2016-10-06 05:00:00..." name="query" />
|
|
<input type="submit" value="Search" />
|
|
</form>
|
|
</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th colspan="2">
|
|
The format for the search input needs to be very specific. It should be entered as follows...
|
|
<br>
|
|
<br>
|
|
To search for a specfic date, the format would be <font color="red"><u>2016-10-02</u></font>. This is year, month, day respectively. This specific search would return all of the results for October 2nd.
|
|
<br>
|
|
<br>
|
|
To search for a specific hour, the format would be <font color="red"><u>2016-10-02 15</u></font>. This is year, month, day, hour respectively. This specific search would return all of the results for October 2nd for the entire 3PM timespan.
|
|
<br>
|
|
<br>
|
|
To search for a specific minute, the format would be <font color="red"><u>2016-10-02 15:30</u></font>. This is year, month, day, hour, minute respectively. This specific search would return all of the results for October 2nd for the entire 3:30PM timespan.
|
|
<br>
|
|
<br>
|
|
All searches need to be based on a 24 hour clock.
|
|
|
|
<th>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
</body>
|
|
</html> |