Profile Moods Bebo Application

Profile Moods Bebo Application

Bebo Application (PHP)

Profile Moods is my first bebo application. It's just a simple application which allows bebo users to display their current mood and a quote on their profile pages, send their friends hugs, kisses, smiles and gifts and compete the be the most kissed, smiled at, hugged or have received the most gifts.


View More Information...

How to create simple Member Login for your websites. Part 3 - Logging Out Users

How to create simple Member Login for your websites. Part 3 - Logging Out Users

Part 3 - Logging out users

<?php
session_start();

// if the user is logged in, unset the session
if (isset($_SESSION['admin_loggedin'])) {
unset($_SESSION['admin_loggedin']);
}

// now that the user is logged out,
// go to login page
header('Location: index.php');
?>




All we do to logout the user is again start the session then we check to see if the user is logged in and if they are unset the session and redirect them back to the login page (index.php).


Part 2 - Managing Sessions
Back to the start

Comments

Comments will be displayed here

Back to Tutorial Home