-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog.php
executable file
·57 lines (51 loc) · 1.18 KB
/
catalog.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
<?php
require ("include/constants.php");
require ("../include/site_wide_variables.php");
# Declare our database variables.
$db = mysql_connect (HOST, USER, PASS);
if (isset($mode) == "SS") {
$Title = "The Plantage, Inc. — Sunny Startups™";
} else {
$Title = "The Plantage, Inc. — Spring " . date("Y") . " Catalogue";
}
include ("include/header.html");
require ("include/flag.html");
?>
<table border="0" cellpadding="0" cellspacing="0" width="880">
<tr>
<?php
include ("include/leftnav.html");
?>
<td width="20"> </td>
<td width="730" align="left" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="550">
<tr>
<?php
if (isset($mode)) {
include ("include/tabs_ss.php");
echo "</tr>\n";
require ("startups.php");
} else {
include ("include/tabs.php");
echo "</tr>\n";
require ("master.php");
}
?>
<tr>
<td height="10" colspan="3"> </td>
</tr>
<?php
require ("include/footer.php");
?>
<tr>
<td height="10" colspan="3"> </td>
</tr>
</table>
</td>
</tr>
</table>
<?php
mysql_close($db);
?>
</body>
</html>