Jump to content

logout button problem


jmahdi

Recommended Posts

Hi there I have this problem with a button that should destroy sessions and then redirects to login page when clicked, pointing to this method:

 

public function logout(){
$this->logged_in = false;
session_start();
session_unset();
session_destroy();
redirect_to("login.php");
    }

 

the function is called as bellow:

             <form>
	    <input id="logout" name="logout" type="submit" value="logout" onClick="<?php $session->logout(); 
	    ?> " />
	</form>

which is available on a page called index.php, which is the default page where you'll be directed to when logged in or just registered. unfortunately when I'm supposed to be to this page and before even clicking on the button, the function just does the work and redirects to the login page!!!.....any help please

 

 

 

 

 

 

Link to comment
Share on other sites

You can't set a PHP function to happen on an onclick event. Thats for client-side scripting languages (like javascript). PHP is run on the server side, so essentially you are just telling PHP to run that function at that point in the code. You could simply make a logout.php page, and run the logout code on that page. It will redirect so its not like the user will be stuck on the logout page.

Link to comment
Share on other sites

You can't set a PHP function to happen on an onclick event. Thats for client-side scripting languages (like javascript). PHP is run on the server side, so essentially you are just telling PHP to run that function at that point in the code. You could simply make a logout.php page, and run the logout code on that page. It will redirect so its not like the user will be stuck on the logout page.

 

thanks for the advice, I think this should solve it :)

Link to comment
Share on other sites

The problem in mikesta's possible solution is that if someone would type 'logout.php' in the browser, he would be logged in.

 

So it's good to create a link with a encrypted $_GET variable like this:

 

LOGOUT BUTTON ON THE PAGE:

 

$getvalue = 'ok';

$get = urlencode($getvalue);

echo "<a href='logout.php?logout={$get}'>Logout</a>";

 

ONCLICK: (logout.php)

 

if(isset($_GET['logout'])){

  $get = urldecode($_GET['logout']);

  if($get == 'ok'){

      $session->logout(); 

  }else{

      header('index.php');

  }

}

 

P.S. I think there is no redirect_to() function in PHP.

Use header('Location: login.php');

Link to comment
Share on other sites

The problem in mikesta's possible solution is that if someone would type 'logout.php' in the browser, he would be logged in.

 

So it's good to create a link with a encrypted $_GET variable like this:

 

LOGOUT BUTTON ON THE PAGE:

 

$getvalue = 'ok';

$get = urlencode($getvalue);

echo "<a href='logout.php?logout={$get}'>Logout</a>";

 

ONCLICK: (logout.php)

 

if(isset($_GET['logout'])){

  $get = urldecode($_GET['logout']);

  if($get == 'ok'){

      $session->logout(); 

  }else{

      header('index.php');

  }

}

 

P.S. I think there is no redirect_to() function in PHP.

Use header('Location: login.php');

redirect_to() is likely a custom function that has been written to do just that, and there is no need to encrypt a $_GET variable, as logout.php does not render the end user automaticly logged in, I think you may have missunderstood that bit as it's not even a page, it's a function.  Besides, $_POST would be much easier for what you're suggesting.

 

P.S. urlencode is not an encryption method.

P.P.S. There is no PHP 'ONCLICK:()' function.

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.