Jump to content

User login


forumnz

Recommended Posts

set a session on the login

ie

<?php
session_start();
$_session['access'] = true;
?>

 

 

on the start of the secret.php

have

secret.php

<?php
session_start();
if( isset($_session['access']) && ($_session['access'] === true) )
{
echo "welcome";
}else{
die("FAILED");
}


?>

Link to comment
https://forums.phpfreaks.com/topic/51106-user-login/#findComment-251565
Share on other sites

qnother thign you miught want to add is stuff like when they logged in and out.  you could do this in a database, i do it on my site, and so i can see if they are regulars, or only on  ocaisionally, and how long theyve been on forin total.

 

i beleive thats what counts how long youve been in in this forum....

Link to comment
https://forums.phpfreaks.com/topic/51106-user-login/#findComment-251680
Share on other sites

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.