A
Anonymous
Guest
Help needed please.....
I have the code below which displays a list of names within a marquee. What i'd like to do is make each name that appears a hyperlink to a page. The hyperlink code if not used in the marquee is:
<a href=MemberInfo.php?IDNo=$IDNo></a>
but i cant work out how to make this work inside the code below.
<MARQUEE onmouseover=this.stop() onmouseout=this.start() scrollAmount=1 scrollDelay=80 direction=up width=200 height=70>
<FONT face="comic sans ms" size=2><B><p align="center">SFE Members List:<BR></B>
<?php
$db = mysql_connect("*********","**********","********");
mysql_select_db("deltaforceone",$db);
$result = mysql_query("SELECT * FROM DF1 order by IDNo",$db);
while ($myrow = mysql_fetch_array($result)) {
echo $myrow ["Handle"]."<BR>
";
}
?>
</FONT></marquee>
I would be very grateful if anyone could assist me with this, thanks
Tony
I have the code below which displays a list of names within a marquee. What i'd like to do is make each name that appears a hyperlink to a page. The hyperlink code if not used in the marquee is:
<a href=MemberInfo.php?IDNo=$IDNo></a>
but i cant work out how to make this work inside the code below.
<MARQUEE onmouseover=this.stop() onmouseout=this.start() scrollAmount=1 scrollDelay=80 direction=up width=200 height=70>
<FONT face="comic sans ms" size=2><B><p align="center">SFE Members List:<BR></B>
<?php
$db = mysql_connect("*********","**********","********");
mysql_select_db("deltaforceone",$db);
$result = mysql_query("SELECT * FROM DF1 order by IDNo",$db);
while ($myrow = mysql_fetch_array($result)) {
echo $myrow ["Handle"]."<BR>
";
}
?>
</FONT></marquee>
I would be very grateful if anyone could assist me with this, thanks
Tony