Skip to content
Advertisement

How can I get the average star ratings? PHP Codeigniter

I am creating a rating system where the customer can rate the seller.

I am using the rateyo plugin, so there’s a float value on it like 2.9, 3.8, 4.5, etc

I would like to get all the values of the seller and get the average from it to display his/her overall total ratings. I am using Codeigniter as a framework in PHP

Here’s my code – View

JavaScript

Script

JavaScript

Model

JavaScript

Advertisement

Answer

You can use $this->db->select_avg('column_name') in your select statement to get the average of the rates.

Also make sure that you use float datatype for in your column.

To study more about select_avg()

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement