I do an fql query like this.
SELECT page_id from page_admin WHERE uid=me()
I get page ids as float type. Something like 1.********E+14. I am using php. How can I get it as an integer.
I appreciate any help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t get the id as an integer, since the id’s of facebook are sometimes larger than 11 digits (E+14). Try to parse the id as a string.