I\'ve got the Facebook user ID of the user who created a given page. Now I need to get the page ID to display like box in my website.
Different users have their own Face
$pages = $facebook->api(array( 'method' => 'fql.query', 'query' => 'SELECT page_id FROM page_admin WHERE uid = '.$uid.'' ));
$uid being the profile id# of the FB user! Fql query using PHP SDK