<?php for ($rcnt=0; $rcnt<$product_rating; $rcnt++) { ?> <i class=”fa fa-star has-star” aria-hidden=”true”></i> <?php } for($star_blank=0; $star_blank < (5-$product_rating); $star_blank++){ ?> <i class=”fa fa-star-o” aria-hidden=”true”></i> <?php …
Read MoreTag: star rating
5 start rating with html in php
Function return the html structured star with both rated and not-rated. Call function to get star ratings echo rating_html(4); //Function for html star rating function …
Read More