to display to a particular number of decimal places, just adjust like this:
$pcent = ($nr/$max) * 100;
$num_places = 2; // this is the number of decimal places to round off to
$split = explode(".", $pcent);
$split[1] = substr( $split[1], 0, $num_places );
$pcent = implode(".", $split);