i have a list of developers and their details, i have their details in arrays but i cant figure out some code to lopp through it all in a good way.

here is that info i have:
PHP Code:
$developer1 = array('Name' => '****''Location' => 'Italy''Sourceforge' => '****''Work Areas' => 'PHP, MySQL, Perl');
$developer2 = array('Name' => '****''Loation' => 'Australia''Sourceforge' => '****''Work Areas' => 'PHP, MySQL, Perl, Graphics');
$developer3 = array('Name' => '****''Location' => 'The Netherlands''Sourceforge' => '****''Work Areas' => 'ASP, Graphics, client side(javascript)'); 
note: hashes are for provacy reasons.

how can i go through all the info easily ?