Rating Script Help

Associate
Joined
31 Oct 2005
Posts
444
This rating script works in FireFox2, but not in Internet Explorer 6 & 7.

Any ideas how to fix?

PHP:
<form action="rating.php" method="GET" id=vote name=vote>
<input type="hidden" name="id" value="{$video.galid}">
<input type="hidden" name="type" value="video"><td align="center" valign="top">
Yours: {if !$video.rating.my}
<input type="image" src="images/star-empty.png" value="1" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="1" name="rating" onClick="vote.submit();">
{/if}
{if !$video.rating.my || $video.rating.my <= 1}
<input type="image" src="images/star-empty.png" value="2" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="2" name="rating" onClick="vote.submit();">
{/if}
{if !$video.rating.my || $video.rating.my <= 2}
<input type="image" src="images/star-empty.png" value="3" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="3" name="rating" onClick="vote.submit();">
{/if}
{if !$video.rating.my || $video.rating.my <= 3}
<input type="image" src="images/star-empty.png" value="4" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="4" name="rating" onClick="vote.submit();">
{/if}
{if !$video.rating.my || $video.rating.my <= 4}
<input type="image" src="images/star-empty.png" value="5" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="5" name="rating" onClick="vote.submit();">
{/if}
<br>
Average: {if !$video.rating.average}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $video.rating.average < 1}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$video.rating.average || $video.rating.average <= 1}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $video.rating.average < 2}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$video.rating.average || $video.rating.average <= 2}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $video.rating.average < 3}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$video.rating.average || $video.rating.average <= 3}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $video.rating.average < 4}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$video.rating.average || $video.rating.average <= 4}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $video.rating.average < 5}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
</td></form>
 
Back
Top Bottom