Hey,
I'm trying to make a *scrolling* block for a squad roster. I tried to use some of the code from the block-forums.php and this is what i got.
|
Code:
|
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (eregi("block-Roster.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
//This is the Roster Block
$content = "<A name= \"scrollingCode\"></A>";
$content .="<MARQUEE behavior= \"scroll\" align= \"center\" direction= \"up\" height=\"220\" scrollamount= \"2\" scrolldelay= \"20\" onmouseover='this.stop()' onmouseout='this.start()'>";
$content .="<center> <STYLE=\"text-decoration: none\">Fatal Force Members</center>";
//All members go below here :)
$content = "|F2|BULLWiNkLE
|F2|sTiNg
|F2|Frosty
|F2|Orion
|F2|TaylorMade
|F2|ViKKaN";
?> |
The result is in the bottom left of the page
here. It doesn't scroll

. Can someone debug this for me OR just tell me the scrolling block command since that is what I really need.

Thanks!