dare87 Posted August 5, 2007 Share Posted August 5, 2007 Is there a way to make an if statement so that it would show an image that is associated with a number. I have a field in my SQL that puts a rating on items. Instead of showing the number 1 - 5 I would like it to show an image. aka 1=images/rate1.gif 2=images/rate2.gif 3=images/rate3.gif 4=images/rate4.gif 5=images/rate5.gif Thanks for the help Link to comment https://forums.phpfreaks.com/topic/63371-solved-if-statement/ Share on other sites More sharing options...
AndyB Posted August 5, 2007 Share Posted August 5, 2007 .. do query, abstract result and then ... echo "<img src='images/rate". $row['rating']. ".gif'>"; Link to comment https://forums.phpfreaks.com/topic/63371-solved-if-statement/#findComment-315857 Share on other sites More sharing options...
dare87 Posted August 5, 2007 Author Share Posted August 5, 2007 Thanks, that makes so much more sense.... WHAT WAS I THINKING...lol Link to comment https://forums.phpfreaks.com/topic/63371-solved-if-statement/#findComment-315966 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.