Created
May 26, 2014 19:42
-
-
Save b3457m0d3/885f08b0e4c4689a138b to your computer and use it in GitHub Desktop.
font awesome star rating display
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="list-inline"> | |
<li> <i class="fa fa-star-half-empty"></i> <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