-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.php
62 lines (42 loc) · 840 Bytes
/
images.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
<?php
session_start();
require_once('auth.php');
include('top.php');
?>
<body>
<div id="wrapper">
<div id="topmenu">
<?php
include('top_menu.php');?>
</div>
<div id="header">
<?php include('header.php'); ?>
</div>
<div id="content">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td align="left" valign="top" width="200" >
<div id="left1">
<div class="top_m color2">
Students
</div>
<br>
<?php include('image/image_left.php'); ?>
</div>
</td>
<td align="left" valign="top">
<div id="right1">
<?php
if(!$_GET["type"])
{
include('image/add_image.php');
}
?>
</div>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>