I\'ve a problem in handling the big userid\'s of facebook and properly storing them into my database..
As the fql.query REST api is going to be deprecated ,I\'m usin
If youre using php (http://php.net/manual/en/function.sprintf.php):
printf("%14.0f", 1.00000145202E+14);
outputs:
100000145202000
Javascript:
parseFloat('1.00000145202E+14')