this an a good idea, i am currently writing a website for my sunday league team. a voting system for man of the match would be a wicked extra!
sorry i cant help tho, as i would also like to know
i have seen on some sites like
www.brusheezy.com you can rate a photoshop brush with a star rating, without a login.
p.s, and it only lets you vote once, which i assume is using cookies.
something like this in their source code, not sure where the php/javascript/whatever is tho
Code:
<ul class='star-rating'>
<li class='current-rating' style='width:62.5px;'></li> <li>
<a href='/brush/424?vote=1' title='1 star out of 5' class='one-star'>1</a></li> <li>
<a href='/brush/424?vote=2' title='2 stars out of 5' class='two-stars'>2</a></li> <li>
<a href='/brush/424?vote=3' title='3 stars out of 5' class='three-stars'>3</a></li> <li>
<a href='/brush/424?vote=4' title='4 stars out of 5' class='four-stars'>4</a></li> <li>
<a href='/brush/424?vote=5' title='5 stars out of 5' class='five-stars'>5</a></li>
</ul>