Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8879801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:01:58+00:00 2026-06-14T20:01:58+00:00

I am trying to create a visual representation of a user rating from 1

  • 0

I am trying to create a visual representation of a user rating from 1 to 5 (including .5 values) in the form of stars and half-stars. I have already created the array of user ratings from the MySQL database, I have averaged those values to create an average user rating in the form of a number. What I would like to do is take this value..

$averageuserrating

And if that value is “1”, then return this code once

 echo '<img src="images/star.png" class="ratingstar" />';

If $averageuserrating is 1.5, then this code will be returned

<img src="images/star.png" class="ratingstar" /><img src="images/halfstar.png" class="ratingstar" />

And so on… Is there a way to do this without 10 nested if statements?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T20:01:59+00:00Added an answer on June 14, 2026 at 8:01 pm

    It can be done by something like this:

    $fullStar = '<img src="images/star.png" class="ratingstar" />';
    $halfStar = '<img src="images/halfstar.png" class="ratingstar" />';
    
    $rating = 1.5;
    
    while($rating > 0){
        if($rating >= 1){
            echo $fullStar;
            $rating = $rating - 1;
            continue;
        }
    
        if($rating >= 0.5){
            echo $halfStar;
            $rating = $rating - 0.5;
        }
    }
    

    On a side note, this is not the best way to display a rating system.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a visual representation of some data I have. The function
I am trying to create a Visual Studio 2008 add in, so I have
Im trying to create an ASMX Web Service in Visual Web Developer.I have successfully
I'm trying to create an extension for Visual Studio that will post code from
I have Visual-studio 2010 prot and I am trying to create a Windows-mobile or
I'm trying to create an application similar to Visual Studio in that we have
So I am trying to create a form in Visual Studio C# 2010 Express
I'm trying to create a visual representation of our SQL Servers performance. I'm would
HI im trying to create a simple reservation form in visual studio that takes
I'm trying to create 2 tables in Visual Studio server pane and I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.