Skip to content

Instantly share code, notes, and snippets.

@jawinn
Created March 10, 2014 20:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jawinn/9473554 to your computer and use it in GitHub Desktop.
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