Skip to content

Instantly share code, notes, and snippets.

@jawinn
Created March 10, 2014 20:25
Show Gist options
  • Select an option

  • Save jawinn/9473554 to your computer and use it in GitHub Desktop.

Select an option

Save jawinn/9473554 to your computer and use it in GitHub Desktop.
Quick and simple PHP percentage bar
<div class="percentbar" style="width:<?php echo round(100 * $scale); ?>px;">
<div style="width:<?php echo round($percent * $scale); ?>px;"></div>
</div>
Percentage: <?php echo $percent; ?>%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment