The following is the solution for it:
PHP Code
while($row = mysql_fetch_array($result)){
$vals[$row['column_something']] = $row['count'];
}
foreach($vals as $var => $val)
{
echo $var.' => '.$val.'<br>';
}
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --