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 Quote Link to comment 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'>"; Quote Link to comment 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 Quote Link to comment 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.