Get Facebook latest status using PHP
It is fun playing around the php script. Recently I used to grab facebook latest status.. Here is the script <?php // more informations : http://w3bnet.com // ======================================= $username = “your_facebook_username”; $password = “your_facebook_password”; $curl = curl_init(); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_URL, “https://login.facebook.com/login.php?m&next=http://m.facebook.com/home.php”); curl_setopt($curl, CURLOPT_ENCODING, “”); curl_setopt($curl, CURLOPT_POST, 1); [...]