Page 1 of 1

Redirect multiple users using session

Posted: Sun Jul 15, 2012 12:30 pm
by msnes
I am having problems with this code. It worked until I made it into a session, now I dont know how to change it to make it work.

Code: Select all

<?php
//let's start the session
session_start();
//now, let's register our session variables
session_register('username');

//finally, let's store our posted values in the session variables
$_SESSION['name'] = $_POST['name'];

if(isset($_POST['username']))
{
$users['admin'] = array('password' => 'admin', 'redirect' => 'admin.php');
$users[$username] = array('password' => $password, 'redirect' => 'form3.php');


?>
Can you help me find out why this code wont redirect me to the right pages. Right now I get a blank screen.

Re: Redirect multiple users using session

Posted: Sun Jul 15, 2012 4:23 pm
by requinix
Besides the obvious syntax error, there's nothing in there that actually redirects.

Did you post all of the code? You need to post all of the code.