Here's what I'm faced with... I'm looking to create a page for users to log in.
Based on correct username:password I need to redirect them to a specific page.
The pages will be created in either Word or Excel (saved as html).
I've tried following the steps I've found, but i seem to be having problems.
Is this correct?
// NOTE: all rows except last must have comma "," at the end of line
$LOGIN_INFORMATION = array(
'zubrag' => 'root',
'admin' => 'adminpass',
'username1' => 'dumbass',
'user1' => 'password'
);
// attempt to redirect user logins
$REDIRECTS = array (
'username1' => 'sample.php',
'admin' => 'test.php',
'user1' => 'test2.php'
);
// request login? true - show login and password boxes, false - password box only
define('USE_USERNAME', true);