Jump to content

[SOLVED] Click 2 Log Out?


TheFilmGod

Recommended Posts

I finished making a log in script. Mainly because I got help from this forum!  ;D

 

How can I make a link to log out? One click and the current page is refreshed but the person is logged out? I don't want the person to be redirected to another page to just log out.

 

Thanks in advance!

Link to comment
Share on other sites

You could use $_GET to do this

 

<?php

$logout = $_GET['logout'];

if($logout == 1)
{
   session_destroy();
   header("Location: nlah.php");
}

?>

<a href="yourpage.php?logout=1">Logout</a>

 

This is mearly an example, dont actually use this code

 

~ Chocopi

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.