hyperlink

wxdqz

New Member
Hi,

I tried to make hyperlink, but my code seemed to be not working.

Partial code below:

while($row = mysql_fetch_array($result))
{
echo ("<table border=1>");
echo ("<tr aling=center>");
echo ("<td width=40>");
echo ("AccNum");
echo ("</td>");
echo ("<td width=400>");
echo $row["<a href=http://www.phpbuilder.com/board/archive/index.php/\"http://www.blast.html\">AccNum</a>"];
echo ("</td>");
echo ("</tr>");
}

or Change like

echo ("<a href=\"http://www.blast.html\">$AccNum</a>");

Not working.

But I can get data if I dont want to make hyperlink.

I really appreciate your suggestions!

HR
 
Back
Top