You haven't done anything to loop your results. Pulling mysql_fetch_* functions only pull a single record and put them into an array, and then increment the pointer of the resultset to the next row. You need to pull multiple with a loop:
PHP Code:
while ($row = mysql_fetch_assoc($result))
{
print_r($row);
}