Jump to content

Newbe Login-script questions.


Haemp

Recommended Posts

Hi guys.

I am relativley new to PHP and mySQL and my question is reggarding the modeling of the login application.

So this is what I am thinking:

 

1. User sends away a form with username and password to the server.

2. The forms action script - process.php, sends a querry to the database.

3. The querry checks the database for the username and password.

4. If the given username and password corresponds to that in the database, the script redirects the browser to the users "private section".

 

Thats the general idea. Does this look "ok", or is there any major wrongs? I just want to know if I've got the idea right, what with the infrastucture and all.

 

Thanks in advance.

//Haemp

Link to comment
Share on other sites

Also remember that all scripts in the 'private section' need to check if the user is logged in each time they run.

Example:

<?php
if (!isset($_SESSION['is_logged_in']) OR !$_SESSION['is_logged_in']) 
{
   // Complain or redirect to login page
}
?>

 

 

 

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.