Well, of course, you can either use the tools written by Facebook, or you can do the whole thing on your own.
I suggest you to do the first... You can find some documentation here: http://developers.facebook.com/docs/reference/php/
If you haven't found anything useful there, and you can't find anything up to date (hardly think so, but who knows?), you might want to read the HTTP requests your browser does when logging in and posting on the timeline, as well as the responses given by Facebook servers.
Then, once you read the whole thing, you can write your own HTTP request (based on the previous ones) and send them to the Facebook servers (using fsockopen()).
I'm not sure whether logging in on Facebook always requires the usage of HTTPS...
You can avoid it (it's easier) logging in here http://m.facebook.com/login.php?http
Good luck :)