Skip to content

Instantly share code, notes, and snippets.

@c-taka
Created October 2, 2013 17:34
Show Gist options
  • Select an option

  • Save c-taka/6797370 to your computer and use it in GitHub Desktop.

Select an option

Save c-taka/6797370 to your computer and use it in GitHub Desktop.
FacebookでログインするWebサービスを作ろう
<?php
require_once('config.php');
session_start();
$_SESSION = array();
if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), '', time()-86400, '/fb_connect_php/');
}
session_destroy();
header('Location: '.SITE_URL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment