LOUDMOUTH Posted March 15, 2009 Share Posted March 15, 2009 I have this current code that places the word [DO] into my page. I would like to replace the [DO] with and image instead. How do I do this? <? $result = mysql_query("SELECT * FROM `crimes` ORDER BY `nerve` ASC"); while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { echo "<tr><td width='50%'>".$line['name']."</td><td width='25%'>".$line['nerve']."</td><td width='25%'>[<a href=crime.php?id=".$line['id]."'>DO</a>]</td></tr>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/149492-solved-i-need-help-with-this-code/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.