Jump to content

User login


forumnz

Recommended Posts

This isn't a problem - just a question.

 

Say I have a page named secret.php and I want only logged in users to access it, how can I stop others from briefly viewing it (my script refreshes the page when it sees the user isn't logged in, so they see it for a split second).

 

Thanks a lot.

Link to comment
Share on other sites

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