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. 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\">"; Link to comment https://forums.phpfreaks.com/topic/54540-browser-compatibility/#findComment-269780 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.