If your program or site goes in exception with this error then your PHP was not configured with –enable-bcmath. In windows php has bcmath() for default.
In this snip code there is an alternative to bcdiv():
//$totalPage=bcdiv($a , $b, 0);
//alternative method
$res = $a/$b;
$position = strpos ($res, ".");
$totalPage = substr($res, $position-1);
















