Thursday, February 26, 2009

Getting an average number

<?

$total_ratings = (3+2+3+1+5+2+3);

$total_votes = 7;

$average = $total_ratings / $total_votes;

print("The Average Rating Is: $average");

?>