html script

rive0108

Vista Guru
Gold Member
I am having some problems with a project of mine, can anyone assist me here?

I have created my phpbb forum. and added a link to the arcade- now I want to add a topstrip.php top left link to the forum, but every time I add the html link there I get a blank page on the arcade.
Havoc Arcade Forums • Index page


Here is what I want to add to the right of the "Home" link (top left), What am I doing wrong?
http://www.havocarcade.com/

echo "<a href="http://www.havocarcade.com/forum"><b>Forum</b></a>";

Code:
<div class='topgrad'>
 <div class='topleft'>
  <div id='topleftlinks'>
 
<?php
 
$sep = "\n-\n";
 
 
 
echo "<a href='".get_home_link()."'>" . language("home", true) . "</a>";
 
echo "<a href="http://www.havocarcade.com/forum"><b>Forum</b></a>";
 
$pages = get_pages("htmlize=true&showinmenu=Yes");
 
foreach ($pages as $page) {
    echo $sep."<a href='".get_page_link("id="._sp($page['id']))."' class='topmenulink'>".$page['title']."</a>";
}
 
if (get_user_config("name=dispuserlist")==1 && get_user_config("name=enabled")==1) {
    echo $sep."<a href='".get_users_link()."' class='topmenulink'>" . language("members", true) . "</a>";
}
 
if (taf_enabled()==1) {
    if (get_logged_in_user()!=false || taf_login_required()==false) {
        echo $sep."<a href='".get_taf_link()."' class='topmenulink'>" . language("taf", true) . "</a>";
    }
 
}
 
if (count(get_news())!=0) {
    echo $sep."<a href='".get_news_link()."' class='topmenulink'>" . language("news", true) . "</a>";
}
 
if (count(get_links())!=0) {
    echo $sep."<a href='".get_links_link()."' class='topmenulink'>" . language("links", true) . "</a>";
}
 
 
?>
 
  </div>
 </div>
 
 
 <div class='topright'>
 
  <form action='<?php echo get_home_link(); ?>index.php' method='GET' style='margin: 0px; padding: 0px;'>
 
   <input type='hidden' name='params' value='search'>
 
   <input type='text' class='searchtext' name='q' />
   <input type='submit' value='<?php language("search"); ?>' class='searchbutton' />
 
  </form>
 
 
 </div>
</div>
 
Last edited:

My Computer

System One

  • CPU
    T7600G Core2Duo 2.66 Ghz
    Motherboard
    Intel 945PM + ICH7 Chipset
    Memory
    4GB DDR2 PC2-5300 667MHz
    Graphics card(s)
    Mobility Radeon x1900 256MB
    Sound Card
    Realtek HD
    Monitor(s) Displays
    WUXGA 17"
    Screen Resolution
    1920X1200
    Hard Drives
    640GB 7200RPM SATA/RAID 0 (2x320GB) and 320GB 7200RPM External
    Mouse
    Wireless Microsoft 3000
    Internet Speed
    10 mbps/2 mbps
    Other Info
    Optical Drive: Panasonic UJ-220 DL BD-RE (Blu-Ray)
Back
Top