File "clearsessions.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/twitter/twitteroauth/clearsessions.php
File size: 245 B (245 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
/**
 * @file
 * Clears PHP sessions and redirects to the connect page.
 */
 
/* Load and clear sessions */
session_start();
session_destroy();
 
/* Redirect to page with the connect to Twitter option. */
header('Location: ./connect.php');