home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 March
/
PCWorld_2001-03_cd.bin
/
KOMUNIK
/
progweb
/
progweb.exe
/
phpnuke
/
html
/
themes
/
Sunset
/
header.php
< prev
next >
Wrap
PHP Script
|
2000-11-26
|
1KB
|
35 lines
<?php
global $admin;
echo "<body onload=init() bgcolor=\"#FFC53A\" text=\"#000000\" link=\"#035D8A\" vlink=\"#035D8A\">\n";
echo "<center>\n";
echo "<table border=0 width=100% cellpadding=3 cellspacing=0><tr><td>\n";
echo "<a href=$nuke_url><img src=themes/Sunset/logo.gif Alt=\"".translate("Welcome to")." $sitename\" border=0></a>\n";
if ($admin) {
$result = mysql_query("select qid from queue");
$num = mysql_num_rows($result);
echo "<br>".translate("New Submissions: ")."$num\n";
}
echo "</td><td align=right>\n";
echo "<form action=search.php method=post><font size=2 color=000000>\n";
echo "".translate("Search")."\n";
echo "<input type=text name=query>\n";
echo "</form>\n";
echo "</td></tr></table>\n";
echo "<br><br>\n";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td valign=top width=140>\n";
mainblock();
if ($admin) {
adminblock();
}
leftblocks();
if ($Ephemerids) {
ephemblock();
}
headlines();
online();
echo "</td><td> </td><td valign=top width=100%>";
?>