Jump to content

[SOLVED] I need help with this code


LOUDMOUTH

Recommended Posts

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/149492-solved-i-need-help-with-this-code/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.