Skip to content

Instantly share code, notes, and snippets.

@b3457m0d3
Created May 26, 2014 19:42
Show Gist options
  • Save b3457m0d3/885f08b0e4c4689a138b to your computer and use it in GitHub Desktop.
Save b3457m0d3/885f08b0e4c4689a138b to your computer and use it in GitHub Desktop.
font awesome star rating display
<ul class="list-inline">
<li>&nbsp;<i class="fa fa-star-half-empty"></i>&nbsp;<b>Rating:</b></li>
<?php for($i=0;$i<5;$i++){ ?>
<?php if($i<$rating){ ?>
<li><i class="fa fa-star"></i></li>
<?php } else { ?>
<li><i class="fa fa-star-o"></i></li>
<?php } ?>
<?php } ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment