I am trying to pull an html link out of the database and have it post on the site as an image. It pulls the link fine and the image shows up but it adds an extra image link with...well...no link...look:
$result = mysql_query("SELECT * FROM members");
echo '<center>
<table>
<tr>
<td>';
while($me = mysql_fetch_array($result))
{
echo '<img src="'.$me['pic'].'">';
}
echo'
</td>
<td>
'.$fontString.' <font size="4" color="#0066FF"><b> '.$row['username'].'</font></b>
</td>
</tr>';
Page Source:
<img src="http://img373.imageshack.us/img373/5269/91573237ak4.png"><img src="">
Link To Site:
http://clanrs.net/main/index.php?view=Members&profile=Antec
You can see the extrat image slot it adds after the one image and before the username, and I'm not sure why. Any ideas?