Hi all I know its simple to divide variable but what do I need to add so it only shows the result to 1 decimal place? For example echo 'Rating ' . $rating/$votes; PHP: Dont matter found it. echo 'Rating ' . round($rating/$votes,1); PHP: