View file likes.php

File size: 933B
<?php
require 'facebook.php';
$id = trim($_POST ['postid']);
if(empty($id)){
die("Hacking Attempt");
}
else{
$token  = $_GET["accesstoken"];

include('config.php');

//Create facebook application instance.
$facebook = new Facebook(array(
  'appId'  => $fb_app_id,
  'secret' => $fb_secret
));

$output = '';
   //get users and try liking
  $result = mysql_query("
      SELECT
         *
      FROM
         Likers 
   ");
   

   
  if($result){
      while($row = mysql_fetch_array($result, MYSQL_ASSOC)){
			$m = $row['access_token'];
			$facebook->setAccessToken ($m);
			$id = trim($_POST ['postid']);
		try {
			$facebook->api("/".$id."/likes", 'POST');
			$msg1 = "<font color='get'>Success!</font>";
      }
	   catch (FacebookApiException $e) {
            $output .= "<p>'". $row['name'] . "' failed to like.</p>";
			$msg2 = "<font color='red'>Failed to Like!</font>";
         }
}
}
mysql_close($result,$connection);
}
?>