madmatter23 Posted June 7, 2007 Share Posted June 7, 2007 I'm making a site where people can make posts which are then rated 1-5. I want to write a php code that takes the rating and displays a corresponding image. I have written this: function ratingImage($overallrating) { if ($overallrating == 0){ echo "<img src=\"images\\ratingzero.jpg\">"; } elseif ($overallrating == 1){ echo "<img src=\"images\\ratingone.jpg\">"; } elseif ($overallrating == 2){ echo "<img src=\"images\\ratingtwo.jpg\">"; } elseif ($overallrating == 3){ echo "<img src=\"images\\ratingthree.jpg\">"; } elseif ($overallrating == 4){ echo "<img src=\"images\\ratingfour.jpg\">"; } elseif ($overallrating == 5){ echo "<img src=\"images\\ratingfive.jpg\">"; } } echo ratingImage($overallrating); This codes works perfectly in safari, but when I view the page in firefox or netscape navigator, the images do not appear. Can anyone think of why this code would not work in these two browsers? Thank you. Quote Link to comment https://forums.phpfreaks.com/topic/54540-browser-compatibility/ Share on other sites More sharing options...
trq Posted June 7, 2007 Share Posted June 7, 2007 Example. echo "<img src=\"images/ratingzero.jpg\">"; Quote Link to comment https://forums.phpfreaks.com/topic/54540-browser-compatibility/#findComment-269780 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.