Jump to content

PHP Login, Expire sessions?


Kez323

Recommended Posts

this expire system wont work.. whats wrong with it?

 

When you login: (login page)

<?php

session_start();
$_SESSION['start'] = time();
$_SESSION['expire'] = $_SESSION['start'] + (3600);

?>

The page you goto after you login: (logged in page)

    <?php
session_start();

    $now = time();

    if($now > $_SESSION['expire'])
    {
        session_destroy();
        echo "session expired!";
    }
    else
    { 
	echo $myusername;
	}
?>

When im at the logged in page, and i refresh it just says "session expired!"

Link to comment
https://forums.phpfreaks.com/topic/281208-php-login-expire-sessions/
Share on other sites

You have some whitespace before your opening <?php tag which should have given you a warning.. this may possibly be causing $_SESSION['expire'] to be unavailable on the logged in page (depending on some other settings), so try removing it. But other than that, at face value, the script works fine by itself..

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.