when i login my acct,nothing is being posted.it does not redirect with any of the pages its supposed to be in.. these is the codes..please help..thank you! <?php session_start(); $username = $_POST['username']; $password = $_POST['password']; if ( isset ($_POST['username']) ) { $connect = mysql_connect("localhost","root","") or die ("could'nt connect to db"); mysql_select_db("tesda") or die ("cant connect"); $sql=("SELECT * FROM login WHERE username='$username'"); $result=mysql_query($sql); $row=mysql_fetch_array($result); if($result !=0 ) { while($row=mysql_fetch_assoc($result)) { $dbusername = $row['username']; $dbpassword = $row['password']; } if ($username==$dbusername&&$password==$dbpassword){ if($row['name'] == $_POST['name']) { if($_POST['username']=='tesda1'){ header('Location: expi1.php'); } else if($_POST['username']=='tesda2'){ header('Location: expi2.php'); } else if($_POST['username']=='tesda3'){ header('Location: expi3.php'); } else if($_POST['username']=='tesda4'){ header('Location: expi4.php'); } else if($_POST['username']=='tesda5'){ header('Location: expi5.php'); } else if($_POST['username']=='tesda6'){ header('Location: expi6.php'); } else if($_POST['username']=='tesda7'){ header('Location: expi7.php'); } else if($_SESSION['username']="$dbusername"){ header('Location: attempt1.php'); } else if($_SESSION['username']="$dbusername"){ header('Location: attempt2.php'); } else if($_SESSION['username']="$dbusername"){ header('Location: attempt3.php'); } } } } } ?>
Try and echo out the username/password variables to make sure they are posting. I also think this bit is wrong: You've set the variable to $username,$password not $dbusername,$dbpassword
when I tried and echo out the username and password, an error came out.. this is what it says Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\expie\logging.php:6) in C:\xampp\htdocs\expie\logging.php on line 28 what should I do with this? Sorry,I'm not that good in programming but I have to that's why I posted this problem here..please,please I really need help..anyway,thanks for the earlier reply.hope you'll reply again..thanks!