well if your rating system is like this
id | gameid - or id of that game | rating | total votes
now set it up like that... or even set it up in the games table itself if it has 1..
rating will be added like if 5 voted for it will be rating = rating + 5 and total added by 1..
now when working it out
in the while loop
if($r[total] < 1)
{
$total_perc= 0;
}
else
{
$total_perc = round(($r[vote]/$r[total),2);
}
need more help pm with all code and table set out