Jump to content

Browser Compatibility


madmatter23

Recommended Posts

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

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.