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
101
102
103
|
<?php require("webadmin/configure.php"); $catid = (int)$_GET['catid']; ?> <!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> <title>Po Cheong Thai Boxing Club</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="css/style.css" /> <script type="text/javascript" src="js/mlddmenu.js"></script> <link rel="stylesheet" type="text/css" href="css/mlddmenu.css" /> </head> <body bgcolor="#F0F0F0" leftmargin="0" topmargin="0"> <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td><a href="index.php"><img src="images/po01.jpg" border="0" /></a></td> </tr> <tr> <td bgcolor="#000000"> <ul class="mlddm"> <? load(0, 0);
function load($p, $space) { $sql = "SELECT * "; $sql .= "FROM template left outer join categories "; $sql .= "ON template.templateid = categories.templateid "; $sql .= "where parentid = $p "; $sql .= "order by sortby";
$result1 = mysql_query($sql); $n=1; $count = mysql_num_rows($result1);
while ($row = mysql_fetch_array($result1,MYSQL_ASSOC)) { if ($space <> 0 && $n == 1) echo "<ul>"; echo "<li><a href='". $row{'templatepage'} ."?catid=". $row{'catid'} ."' class='menulink'>". $row{'catname'} . "</a>";
$n++; load($row{'catid'}, $space+1); echo "</li>"; if ($space <> 0 && $count < $n) echo "</ul>";
}
} ?> </ul> </td> </tr> <tr> <td><img src="images/banner01.jpg" width="1000" height="200" /></td> </tr> <tr> <td align="left" valign="top" background="images/contentbg.jpg" bgcolor="#FFFFFF" style="background-repeat:repeat-x"><table width="850" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="30" height="35" align="left" valign="top"><img src="images/img_welcometopleft.jpg" width="30" height="35" /></td> <td width="790" align="left" valign="top" background="images/img_welcometopmiddle.jpg"><img src="images/img_welcometopmiddle.jpg" width="461" height="35" /></td> <td align="left" valign="top"><img src="images/img_welcometopright.jpg" width="30" height="35" /></td> </tr> <tr> <td align="left" valign="top"><img src="images/img_welcomeleft.jpg" width="30" height="200" /></td> <td align="left" valign="top" bgcolor="#FFFFFF"><table width="790" border="0" cellpadding="0" cellspacing="0"> <? $sql = "SELECT * "; $sql .= "FROM pagecontent left join categories "; $sql .= "ON pagecontent.catid = categories.catid "; $sql .= "where pagecontent.catid = '". $catid ."' "; $result1 = mysql_query($sql); $row = mysql_fetch_array($result1,MYSQL_ASSOC); ?> <tr> <td class="titlename26"><? echo $row{'catname'}; ?></td> </tr> <tr> <td><? echo $row{'pagecontentdesc'}; ?></td> </tr>
</table></td> <td align="left" valign="top"><img src="images/img_welcomeright.jpg" width="30" height="200" /></td> </tr> </table></td> </tr> <!-- Content End --> <!-- Footer --> <tr> <td align="left" valign="top" bgcolor="#FFFFFF"> </td> </tr> <tr> <td align="center" valign="top" bgcolor="#FFFFFF" class="footerspan"><span class="footertxt">Copyright © 2010 Po Cheong Thai Boxing Club. All Rights Reserved | Powered by <a href="http://www.onesolution.com.hk" target="_blank">One Solution Limited</a>.<br /> <a href="http://www.onesolution.com.hk" target="_blank"><img src="images/webicon137w23h.jpg" width="137" height="23" border="0" /></a></span></td> </tr> <!-- Footer End --> </table> </body>
</html>
|