My Two page facebook application contains
index.php
welcome.php
On index.php
$signed_request = $facebook->getSignedRequest();
works fine and i can get page id
but when i click on welcome page, and try to get page id,
$signed_request does not fetch page id.
[algorithm] => xxxx
[code] => xxxxx
[issued_at] => xxxxxx
[user_id] => xxxxxxx
got this but couldn’t get page id
You only get
$signed_requeston the first page. You should save it in a session if you want to use it on another page.