que tal algo asi?
Código PHP:
<?php
function porcentaje($total, $parte, $redondear = 2) {
return round($parte / $total * 100, $redondear);
}
$n1 = 60;
$total = 100;
$barra = porcentaje($total, $n1, 2);
?>
<div style="width:<?php echo $barra; ?>; background-color:#000000;"> </div>