-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
100 lines (94 loc) · 3.1 KB
/
about.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
91
92
93
94
95
96
97
98
99
100
<?php
session_start();
if (!isset($_SESSION['username'])) {
header("location:admin_login.php");
exit;
}
include "include/connect.php";
include "include/gensettings.php";
$copy = '© Copyright 2007 by Provincial Government of Laguna & Laguna University. All rights reserved. <br />
This software is legally free to copy, modify and redistribute.<br /><br /><br />';
$credit = ' Credits ';
$hidden = 1;
if (isset($_POST['copy'])) {
$copy = "Provincial Government of Laguna: Gov. Teresita 'Ning ning' Lazaro,Provincial Administrator Dennis Lazaro.
MISO Management:Jaime Garcia, Charito Perez, Adrian Miras, Lee Samonte, Jill Sandoval.
Jason Jimenez, Analie Vergel,Julie Ann Delgado,Manolito Isles,Rodel Sulsona ";
$credit = ' About ';
$hidden = 2;
}
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>About the system</title>
<link rel="stylesheet" type="text/css" href="css/<?php echo $css; ?>" />
</head>
<body OnLoad="document.myform.search.focus();">
<p> </p>
<form action="about.php" method="post">
<table width="100%" border="0">
<tr>
<td width="1%"> </td>
<td width="1%"> </td>
<td width="93%"><strong>Anilag Library System <br />
Version 0.90 </strong></td>
<td width="5%"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>Developed by: <a href="about.php" onclick="MM_openBrWindow1('http://www.lagunauniversity.ph','','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes')">Laguna
University </a></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td align="left">
<?php echo $copy; ?>
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td align="center">
<input name="button2" type="submit" value="<?php echo $credit; ?>" class="btn" />
<input name="button" type="button" onclick="javascript:window.close();" value=" OK "
class="btn" />
</td>
<td><input name="copy" type="hidden" id="copy" value="<?php echo $hidden; ?>" /></td>
</tr>
</table>
</form>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>