-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphotos.php
74 lines (72 loc) · 2.06 KB
/
photos.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
include("header.php");
include("connection.php");
$result = mysqli_query($con,"SELECT * FROM Persons WHERE FirstName='Peter'");
while($row = mysqli_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'];
echo "<br>";
}
?>
<div id="main">
<div id="content" class="left">
<div class="highlight">
<h3>Admin Dashboard</h3>
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<p>
<label for="institute">Album Name</label>
<select name="institute" id="institute">
</select>
</p>
<p>Photo Title
<label for="textarea"></label>
<label for="textfield"></label>
<input type="text" name="textfield" id="textfield" />
</p>
<p>Image
<label for="fileField"></label>
<input type="file" name="fileField" id="fileField" />
<label for="fileField"></label>
</p>
<p>
<input type="submit" name="button" id="button" value="Upload Image" />
</p>
</form>
<table width="541" border="1">
<tr>
<th width="170" height="51" scope="col"> </th>
<th width="186" scope="col"> </th>
<th width="163" scope="col"> </th>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<p> </p>
</div>
<div class="projects">
<div class="item"></div>
<div class="item">
<div class="cl"> </div>
</div>
</div>
</div>
<?php
include("sidebar.php");
?>
<div class="cl"> </div>
</div>
<div class="shadow-l"></div>
<div class="shadow-r"></div>
<div class="shadow-b"></div>
</div>
<?php
include("footer.php");
?>