Well, what do you mean by "parse" ? Generally you just loop through the data in a [man]while/man loop and use it as necessary.
If you JUST want an associative array, I would recommend using [man]mysql_fetch_assoc/man, though the process is the same. Here's an example:
while($result = mysql_fetch_array($exec)) {
echo 'Name: ' . $result['name'] . "<br>\n";
echo 'Age: ' . $result['age'] . "<hr>\n";
}
If you're having a specific problem, show us the code you're using and explain what you're trying to do with it.