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.

I can't figure it out and it's hard to Google:

My iframe produces a "1" just before the

but I can't figure out why and where it comes from. http://www.quepasa.in-town.nl/facebook/

My code:

require 'fb-sdk/src/facebook.php';
$facebook = new Facebook(array(
'appId' => 'xxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
));

$signed_request = $facebook->getSignedRequest();

$page_id = $signed_request["page"]["id"];
$page_admin = $signed_request["page"]["admin"];
$like_status = $signed_request["page"]["liked"];
$country = $signed_request["user"]["country"];
$locale = $signed_request["user"]["locale"];

if ($like_status) {
echo include("page-revealed.php");} else {echo include("page-signup.php");}

The revealed and signup have not more then this and temporary deleting everything didn't help.

Does anyone know where this is coming from?

share|improve this question
Can you finish the question, you put 'My iFrame produces a "1" just before the ... ' – Tom Nov 17 '11 at 2:24

1 Answer

This is because you are doing an "echo" on an include. Remove the echo and just have it as

if ($like_status) {
include("page-revealed.php");} else { include("page-signup.php");}

And you should be good.

share|improve this answer
Thanks Shane! I think I deserve a crash course PHP ;-) – inTOWN Nov 17 '11 at 2:52

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.