I saw this thread, and that worked for removing the search bar. However, when I try commenting out or deleting the stuff involving the ALLTOPICS part, the entire page disappears. Nothing shows up whatsoever.
The code for my site's header is here. (For some reason it says I used unallowed HTML tags when I try to wrap it in the code tags, so there's a link to it.)
Evaders99 Site Admin
Joined: Aug 17, 2003
Posts: 12389
Posted:
Tue Nov 07, 2006 7:11 am
Delete
Code:
$toplist = $db->sql_query("select topicid, topictext from $prefix"._topics." order by topictext");
echo "<select name=\"topic\"onChange='submit()'>\n"
."<option value=\"\">"._ALLTOPICS."</option>\n";
while(list($topicid, $topics) = $db->sql_fetchrow($toplist)) {
$topicid = intval($topicid);
if ($topicid==$topic) { $sel = "selected "; }
echo "<option $sel value=\"$topicid\">$topics</option>\n";
$sel = "";
}
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum