well, if you want two rows within one multi-dimensional array, you could do the following:
$rows = array();
while ($row = mysql_fetch_array($result)) { $rows[] = $row; }
if you want two separate arrays, it would more like this:
$row1 = mysql_fetch_array($result);
$row2 = mysql_fetch_aray($result);