I am trying to add a marquee for my tournament/ladders script.
For some reason it is just scrolling the code.
I would really appreciate input on this! I am a complete noob!😃
<marquee scrollamount='5' scrolldelay='0' onmouseover='this.stop()' onmouseout='this.start()'>
";
$rematch=mysql_query("SELECT challgrid,challgdid,challgrname,challgdname,ladderid,created FROM challenges ORDER BY challid");
while(list($challgrid,$challgdid,$challgrname,$challgdname,$ladderid,$created)=mysql_fetch_row($rematch)){
$ladderfetch = mysql_query("SELECT name FROM ladders WHERE id = $ladderid");
list($laddername)=mysql_fetch_row($ladderfetch);
echo "
<div style='margin-right: 20px; margin-left: 20px; display: inline;'>
<a href='./stats.php?account=$challgrid'>-<span style='color:#06ff00;'><b> $challgrname </b></span></a>
<span style='color:#4d555d;'>vs</span>
<a href='./stats.php?account=$challgdid'><span style='color:#ff0200;'><b> $challgdname </b></span>-</a>
</div>
";
}
echo "
</marquee>
I'm sure that it's something simple that I am over looking.
here is a link to the page I am using to test things out in:
http://www.gamersforacure.com/v3tst/
Thanks for any help you can give!
Gr3yB3ard