Am having this little challenge posting to users facebook wall using PHP. Have already registered users and have been authorized to post to their walls using publish_stream and offline_access.
I need to retrieve their user_id i save in my database and use it to post to their wall.
This is a copy of my script.
$query = "select * from user_details ";
//echo $query;
$result = mysql_query($query);
while($rows = mysql_fetch_row($result)) {
//create message with token gained before
$post = array(
//'access_token' => 'TOKEN HERE',
'access_token'=>$facebook->getAccessToken(),
'message' => 'Hello');
$uid = $rows[uid];
$res = $facebook->api($uid.'/feed', 'POST', $post);
}
The purpose of using $facebook->api($uid.'/feed', 'POST', $post); instead of
$facebook->api('me/feed', 'POST', $post); is to be able to get their user_id and post to their walls.

$uidand$res. – Ofir Baruch May 5 '12 at 12:34