-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths2.php
More file actions
36 lines (33 loc) · 758 Bytes
/
s2.php
File metadata and controls
36 lines (33 loc) · 758 Bytes
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
<html>
<title>Search by profile</title>
<body>
<h1>Search by a few tags</h1>
<form name="s2" action="s2.php" method="get">
Title:
<input type="text" name="title"><br/>
<br/>
Create Date:<br/>
From<br/>
Y<input type="text" name="FY" size="4">
M<input type="text" name="FM" size="2">
D<input type="text" name="FD" size="2">
<br/>
To<br/>
Y<input type="text" name="TY" size="4">
M<input type="text" name="TM" size="2">
D<input type="text" name="TD" size="2">
<br/>
<br/>
Format:
<input type="radio" name="format" value="jpg">jpg
<input type="radio" name="format" value="png">png<br/>
<input type="submit" value="Submit">
</form><br/>
<?php
include_once('helper.php');
if(isset($_GET) and count($_GET)>0){
showItemByProfile($_GET);
}
?>
</body>
</html>