Monkuar Posted May 11, 2009 Share Posted May 11, 2009 I Keep getting Division by zero when i visit my Store in my forums.. here's the code and error line: ERROR: Warning: Division by zero in C:\xampp\htdocs\forums\sources\functions.php on line 1005 Warning: Division by zero in C:\xampp\htdocs\forums\sources\functions.php on line 1007 CODE LINES: if ( ($data['TOTAL_POSS'] % $data['PER_PAGE']) == 0 ) { $work['pages'] = $data['TOTAL_POSS'] / $data['PER_PAGE']; } Link to comment https://forums.phpfreaks.com/topic/157655-solved-division-by-zero/ Share on other sites More sharing options...
premiso Posted May 11, 2009 Share Posted May 11, 2009 You cannot divide by zero. $data['PER_PAGE'] must be empty or contain a zero. Simple as that. Echo it out and figure out why it is not passing a value. Link to comment https://forums.phpfreaks.com/topic/157655-solved-division-by-zero/#findComment-831322 Share on other sites More sharing options...
Monkuar Posted May 11, 2009 Author Share Posted May 11, 2009 Thank u Link to comment https://forums.phpfreaks.com/topic/157655-solved-division-by-zero/#findComment-831324 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.