Step and step to build php script post to facebook fanpage wall

Hi everybody in this forum,
I’ve tried to search all type in this forum and google search before create new thread. But i can’t find the best tutorial to build php script post to facebook fanpage wall. Please tell me how to build a simple php post to facebook fanpage wall.

Thank you!:blush:

Facebook has an entire API for PHP interfaces which you’ll want to start looking at…

To get more specific help you’ll want to be more specific with your request. What exactly are you looking to do? Post to your Facebook Fanpage as your page? Let users post to it as themselves? Something else?

Yeah! thank you Ted S, exactly i want to post a message to a special page. I’ve read on http://developers.facebook.com/docs/reference/php/facebook-api/ it posted to a User’s wall.

$ret_obj = $facebook->api(‘/me/feed’, ‘POST’,
array(
‘link’ => ‘www.example.com’,
‘message’ => ‘Posting with the PHP SDK!’
));

How to change this script to post message to fanpage?

Thank you!