-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.php
executable file
·56 lines (39 loc) · 1.32 KB
/
menu.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
<?php
if((!$image)&&(!$term)&&($wkdisgood!="map")){
?>
<td width="220" valign="top" bgcolor="#FFFFFF">
<fieldset>
<legend><strong><?php print $language['mainmenu']; ?> <img alt='clickhere' src="images/topicarrow.gif"> </strong></legend>
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<?php
menupages("menu");
?>
</table>
</fieldset>
<br> <a target="_blank" href="http://www.irelandoffline.org/survey" title="Link to IrelandOffline Survey"><img src="http://www.irelandoffline.org/images/surveys.jpg" alt="Link to IrelandOffline Survey" width="88" height="31" border="0"/></a>
<br><br>
<?php
include("adsenseimg.php");
?>
<fieldset>
<legend>
<strong><?php print $language['sitelogin']; ?> <img alt='clickhere' src="images/topicarrow.gif"> </strong></legend>
<?php include("login.php"); ?>
</fieldset>
<br><br>
<fieldset>
<legend>
<strong><?php print $language['polls']; ?> <img alt='clickhere' src="images/topicarrow.gif"> </strong></legend>
<?php include("poll.php"); ?>
</fieldset>
<br><br>
<fieldset>
<legend>
<strong>
<?php print $language['whosonline']; ?> <img alt='clickhere' src="images/topicarrow.gif"> </strong></legend>
<?php include("online.php"); ?>
</fieldset>
</td>
<?php
}
?>