" ; print_r($x) ; echo "" ; /* Now let's list our feeds. If you did not get an error so far, your new feed should be included in the list. */ $myfeeds = $fb->FindFeeds() ; echo "FindFeeds Returned:
" ; print_r($myfeeds) ; echo "" ; /* Use GetFeed to get a feed's details. */ $feed1_id = $myfeeds[0]['id'] ; $feed1_details = $fb->GetFeed($feed1_id) ; echo "GetFeed [$feed1_id] Returned:
" ; print_r($feed1_details) ; echo "" ; /* Delete Feed If you know your feed's ID (it can get it using FindFeeds() above), and you are *SURE* you want to delete it, use the following code $x = $fb->DeleteFeed('feed id #') ; print_r($x) ; */ ?>