if you dont want to get this error simply put a @ at the beginning of the line code, in my example, on line 6

sample code:

// THIS WILL PRODUCE THE ERROR
$a = 7;
$b = 0;

//suppress division-by-zero warning
$c = $a / $b;
?>

 

// THIS WILL RESOLVE THE ERROR
$a = 7;
$b = 0;

//suppress division-by-zero warning
$c = $a / $b;
?>