Ok... First of all you'll need :
- A comfy chair
- A Computer (complete with all peripherals : keyboard, mouse, screen, etc)
- An Internet connection
- Determination
- A Bookmark to this site ;)
Now, to your question.
The Graph API Explorer is a great way to get started and poke around at the API to see how you can get results. You can even run FQL queries with the Graph API.
One thing to note here is that because you are dealing with the users gender and that is not indexed in the API (that means that it can not be a search criteria), you'll have to first retrieve the users friends and only after that make calls to retrieve each of the users gender.
With regard to displaying the information. One could use a simple method of iterating through an array of data (possibly populated by a previous call to the API) and printing out the data wrapped in
html tags.
Here is a simple example or iterating through an array and printing the contents of that array in html.
// $facebook_friends is populated with user information
foreach ($facebook_friends as $friend) {
echo '<table border="0">';
echo '<tr><td>'.$friend['id'].'</td></tr>';
echo '<tr><td>'.$friend['name'].'</td></tr>';
echo '<tr><td>'.$friend['picture'].'</td></tr>';
echo '</table>';
}