Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Having some problems with syntax here. Trying to get like counts on any page using a variable like so:

$url = "http://www.my-domain.com"
$result = $facebook->api(array(
    'method' => 'fql.query',
    'query' => 'SELECT  total_count from link_stat  where  url ="$url";
));
$fb_fans = $result[0]['total_count'];

However it works when I replace $url with the actual value as such:

$result = $facebook->api(array(
    'method' => 'fql.query',
    'query' => 'SELECT  total_count from link_stat  where  
    url ="http://www.my-domain.com";
));
$fb_fans = $result[0]['total_count'];

Can someone tell me what I am obviously over looking here?

share|improve this question

1 Answer

up vote 0 down vote accepted

$url = "http://www.my-domain.com"
$result = $facebook->api(array(
    "method" => "fql.query",
    "query" => "SELECT  total_count from link_stat  where  url ='".$url."'"
));
$fb_fans = $result[0]['total_count'];

share|improve this answer
Beautiful! Thank you. – Justin A Jan 19 '12 at 7:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.