-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.php~
90 lines (82 loc) · 2.99 KB
/
Contact.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
session_start();
$user_name = "root";
$pass_word = "";
$database = "schoolschedule";
$server = "127.0.0.1";
$db_handle = mysql_connect($server,$user_name,$pass_word);
$db_found = mysql_select_db($database,$db_handle);
@$UserName=$_SESSION['UserName'];
@$TeacherID=$_SESSION['ID'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link href="MyStyle.css" type="text/css" rel="stylesheet">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>Contact</title>
</head>
<body>
<ul>
<li2>
<img src="logo.png" height="46" width="40">
</li2>
<li><a href="home.php">Home</a></li>
<li><a href="InsertionMenu.php">Data Insertion</a></li>
<li><a href="assignement.php">Teacher Assignment</a></li>
<li><a href="selctclassparallelsubject.php">Parallel Subject Assignment</a></li>
<li><a href="ScheduleGeneration.php">Generate Schedule</a></li>
<li><a href="search.php">Search Schedule</a></li>
<li><a class="active" href="contact.php">Contact</a></li>
<ul style="float: right; list-style-type: none;">
<li>
<a href="about.php">About</a></li>
<li>
<a href="login.php"><?php if(@$_SESSION['login']==1) {
echo @$_SESSION['UserName'];
}else {
echo 'Login';
} ?></a></li>
</ul>
</ul>
<div style="text-align: center; font-family: Arial; font-size:100%; ">
<h1>Contact</h1>
<table style="width: 100%; height: 516px; text-align: left; margin-left: auto; margin-right: auto;" background="tablebackground.png" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<table style="width:25%; height:516px;" background="backgroundforcontact.png" border="0" cellpadding="0" align='center'>
<tr>
<td align='center'>
<img src="pp.png" alt="" width="230" height="224">
<table background="backgroundforcontact2.png" style="background-size: 100% 100%; width:80%; height:249px;">
<tr>
<td align='center'>
<table background="backgroundforcontact3.png "style="background-size: 100% 100%";>
<tr>
<td align='center'>
<br>
If there are any problems,<br>
you can contact the creator <br> of this system<br>
<table background="backgroundforcontact4.png "style="background-size: 100% 100%; font-size:90%;";>
<tr>
<td align='center'>
<img src="whatsapp.png" alt=""width="40" height="40"><br> WhatsApp: +6281289261212<br>
<img src="line.png" alt=""width="40" height="40"><br> LINE: vincentdjojo<br>
<img src="Gmail-Logo.png" alt=""width="40" height="30"><br> Email: [email protected]
<br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body></html>