Hi im trying to populate an array with indexes like 'user1' and 'score1' to return to a function.
My Code: It comes up with unindentified variable errors
$query = 'select * from users order by score desc';
$result = mysql_query($query) or die (mysql_error());
$highscore = array();
$count = '0';
while($row = mysql_fetch_array($result))
{
$count++;
$highscore = array('user' . $count => $row['username'], 'score' . $count => $row['score']);
}
return $highscore;