In PHP, I need to round off a number to the next whole number. For example, in my program, I am using the round as below.
$val = round(count($names)/15); >
Try This:
$val = round(count($names)/15, PHP_ROUND_HALF_DOWN) + 1;