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>"; } ?> Link to comment https://forums.phpfreaks.com/topic/149490-solved-i-need-help-with-this-code/ Share on other sites More sharing options...
ram4nd Posted March 15, 2009 Share Posted March 15, 2009 <? $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'].'"><img src="Here goes the image location" /></a></td></tr>'; } ?> You shoud use single quotes instead of double if that is not necessary. Link to comment https://forums.phpfreaks.com/topic/149490-solved-i-need-help-with-this-code/#findComment-785068 Share on other sites More sharing options...
LOUDMOUTH Posted March 15, 2009 Author Share Posted March 15, 2009 Thank you that worked. But how do i make the border on the image disappear since it is a link? Link to comment https://forums.phpfreaks.com/topic/149490-solved-i-need-help-with-this-code/#findComment-785073 Share on other sites More sharing options...
ram4nd Posted March 15, 2009 Share Posted March 15, 2009 <? $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'].'"><img src="Here goes the image location" border="0" /></a></td></tr>'; } ?> Just add border="0" to image attributes. Link to comment https://forums.phpfreaks.com/topic/149490-solved-i-need-help-with-this-code/#findComment-785074 Share on other sites More sharing options...
LOUDMOUTH Posted March 15, 2009 Author Share Posted March 15, 2009 Thank you very much! Link to comment https://forums.phpfreaks.com/topic/149490-solved-i-need-help-with-this-code/#findComment-785075 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.