Yes. Once you get your result, use [man]mysql_fetch_array[/man] to store the row in array $array, then you can simply use:
$_SESSION['myArray'] = $array;
and can access the array parts like so:
echo $_SESSION['myArray']['foo'];
(outputs the data for column 'foo' in your MySQL row).