Deprecated: Assigning the return value of new by reference is deprecated in /home/translation/www/blog/wp-includes/cache.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /home/translation/www/blog/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/translation/www/blog/wp-includes/theme.php on line 508
Vincent Park » 2007 » September » 10
Archive for September 10th, 2007

How to use session with Facebook apps

September 10th, 2007 | Category: Programming, Facebook

if (isset($_POST[”fb_sig_session_key”]))
{

$_fb_sig_session_key = str_replace(”-”,”0″,$_POST[”fb_sig_session_key”]);
session_id($_fb_sig_session_key);

}
session_start();

No comments