clearsessions.php 275 Bytes
<?php
/**
 * @file
 * Clears PHP sessions and redirects to the connect page.
 */
 
/* Load and clear sessions */
session_start("openid");
session_destroy();
 
/* Redirect to page with the connect to Twitter option. */
header('Location: ../openid/login.php?login&erro=ok');
?>