Jump to content

Login system which redirects to different pages...?


sohrabdvr

Recommended Posts

I recommend to learn both...You can use any of them (PHP or SQL) depending on what you want to do, but thats up to you.

 

A PHP script would look like this:

<?php

if($user == $user1)
{
//Page where "user1" will be redirected
} else {
//If the person is not "user1" he/she will be redirected here
}

?>

Link to comment
Share on other sites

However you authenticate your user's creds simply redirect them to a particular location. The resulting url will be entirely up to your application design.  You would never actually have real files for each user. Instead you make one user home page with dynamic content based on the username provided.

 


#pseudo code

if authenticated store username in a session
$_SESSION['username'] = $username;
redirect to /mypage.php?friend=$_SESSION['username']

 

 

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.