Jump to content

PHP Warning: Division by Zero


Digiboy
Go to solution Solved by teynon,

Recommended Posts

Hi guys, 

 

I keep getting error for this function: this is the error: Warning: Division by zero in...../..../rating.php

 

and this is my code tried everything I could think of but no success

 

<?php
include ('db.php');
function getRating($id,$rating,$click){
      $startCount= round($rating/$click);
      $blankCount=5-$startCount;
      $ratingHTML='';
      for($i=0;$i<$startCount;$i++){
          $rate=$i+1;
          $ratingHTML.='<img src="images/star.png" onclick=changeRating("'.$id.'","'.$rate.'")>';
      }

      for($i=$startCount;$i<5;$i++){
          $rate=$i+1;
          $ratingHTML.='<img src="images/white.png" onclick=changeRating("'.$id.'","'.$rate.'")>';
      }
      return $ratingHTML;
}
?>

 

Could you please help m with this? I really appreciate your time in advance.

 

Link to comment
Share on other sites

  • 6 months later...

Hello, I was wondering if you could also propose something for me as well regarding this issue.

 

Here is the code that produces the error:

$ratings = $jdb->loadObjectList();

$rating = ( $ratings[0]->rating_sum / $ratings[0]->rating_count );
	 	$rating = round($rating, 0);
	 	
if ( count ( $ratings ) > 0 ) {

blah blah blah

 

I can see the problem, only I don't know how to fix it. :)

 

Any assistance is greatly appreciated. thanks!

Link to comment
Share on other sites

What is the problem? Also division by zero?

 

if so: how about checking whether $ratings[0]->rating_count is a non-zero value?

 

The solution to the original question cheats with !emoty(), which would allow "hello" as a valid division, which would still give an error.

Look at ctype_digit() in the manual to verify that you are trying to divide by an integer, and simply do an IF to catch the error situation.

Link to comment
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.