Jump to content

Recommended Posts

Hi Guys

 

I created an average members rating on my site mobile phone website.

It takes three ratings - Design, Features, Usability - Then adds them together

and divides by the amount.

 

This works fine.

However, it is outputting more than 2 decimal places. How do I stop this?

 

Example:

http://reviews4mobilephones.com/reviews/blackberry_bold_9000.html

 

 

Here is the code:

<?PHP
echo '<strong>Members Ratings</strong><br /><br />';
$rating_adverage = array();
$rating_sql = "SELECT * FROM rating WHERE Rphone_id='$phones_id'";
$rating_query = mysql_query($rating_sql) or die ("Comments query failed".mysql_error());
$rating_count = mysql_num_rows($rating_query);
while ($rating_row = mysql_fetch_assoc($rating_query)){	
$rating_design = $rating_row['rating_design'];
$rating_features = $rating_row['rating_features'];
$rating_usability = $rating_row['rating_usability'];


$rating_adverage[] = $rating_design;
$rating_adverage[] = $rating_features;
$rating_adverage[] = $rating_usability;

}
$final_count = $rating_count*3;
$add_ratings = array_sum($rating_adverage);
$divide_ratings = $add_ratings / $final_count;

echo '<span class="rating">'.$divide_ratings.' </span>';

?>

 

 

Thanks for any help

Link to comment
https://forums.phpfreaks.com/topic/122357-solved-decimal-points-help/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.