This is an incomplete answer, but this is what I've gotten so far:

First: [add the developer application on FB][1].  Then create a new application.  Call it whatever you want.

Second: [Download the PHP client.][2]  Dump it somewhere on your webhost, i.e. /facebook/

Third: Copy the following beginner code to get yourself started into a php file:
     
     <?php
     require_once('facebook/php/facebook.php');
     $facebook = new Facebook("YOUR_API_KEY","YOUR_SECRET_KEY");
     $result = $facebook->api_client->fql_query("SELECT status FROM user WHERE uid = YOURIDNUMBER");
     // OR --- they both get the same data
     $result = $facebook->api_client->users_getInfo(YOURIDNUMBER,'status');
     print_r($result);
     echo "<pre>Debug:" . print_r($facebook,true) . "</pre>"; // debug info
     ?>

**Other info:**

  - You must be logged in and have the
    application added.  OR you give the
    application offline_access
    permissions and have the
    aapplication added.
  - You can add offline_access by typing
    in the following url:
    http://www.facebook.com/authorize.php?api_key=YOUR_API_KEY&v=1.0&ext_perm=offline_access
  - more info on permissions found here: http://wiki.developers.facebook.com/index.php/Extended_permissions
  - I'm at a stopping point: anything my
    program calls the fql query or
    users_getInfo, my page stops
    executing the php?  I'm guessing
    there are a limited amount of calls
    for new applications?  I've never
    done any FB development so I'm
    completely new to it.  Maybe make
    the call and save your recent status
    (or most recent statuses) in your
    own DB to prevent excessive calls to
    the API?

I hope this helps someone get started!    


  [1]: http://www.facebook.com/developers/
  [2]: http://svn.facebook.com/svnroot/platform/clients/packages/facebook-platform.tar.gz