Hi all. I currently have this code on my site:
<?php set_time_limit(0); include('includes/common.php'); $msg=""; if(isset($_POST['submit'])) { $uname1 = $_POST['uname']; $pass1 = $_POST['pass']; if(($uname1=="exchange2011") && ($pass1=="epadhaisvital")) { $_SESSION['login']="LOGGEDIN"; header("Location:profile_2012.php"); exit(); } else { $msg='Invalid Login!'; } } ?>I just need to add an additional Username and Password. Both users will get access to the same pages. Thoughts? Thanks in advance.
Cheers.