Jump to content

Recommended Posts

I'm trying to sort my results based on the value of $average_vote, is this possible? I haven’t been able to find any type of example in the forum or via Professor Google.

 

<?php
include("includes/db.php");
   $sql = "SELECT * 
		FROM ratings 
		JOIN
		markers
		ON markers.marker_id = ratings.id
		LIMIT 5
		"; 
   
$result = mysql_query($sql) or trigger_error('Select SQL failed.', E_USER_ERROR);
$num_rows = mysql_num_rows($result);
	if ($num_rows < 1) {
		echo '<span class="text">Error</span>'; 
	}else {
		while ($row = mysql_fetch_assoc($result)) {
			$total_votes = $row['total_votes'];
			$total_value = $row['total_value'];
			$average_vote = $total_value / $total_votes;
			echo '<span class="text"><b>'.$row['name'].'</b><br/>Fan Rating: '.$average_vote.'</span><br/><br/>';
			} 
		}
?>

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.