I have this code...
When the login is invalid it goes to invalid page as it should but when the login is correct i get this error:Code:<? include "config.php"; $username = $_POST['username']; $password = md5($_POST[password]); $info = mysql_query("SELECT * FROM users WHERE username = '$username'") or die(mysql_error()); $data = mysql_fetch_array($info); if($data[password] != $password) { echo "<META http-equiv=\"refresh\" content=\"3;URL=invalid.php\">"; }else{ $query = mysql_query("SELECT * FROM users WHERE username = '$username'") or die(mysql_error()); $user = mysql_fetch_array($query); setcookie("id", $user[id],time()+(60*60*24*5), "/", ""); setcookie("pass", $user[password],time()+(60*60*24*5), "/", ""); echo ("<META http-equiv=\"refresh\" content=\"3;URL=index.php\">"); } ?>
Warning: Cannot modify header information - headers already sent by (output started at /home/pkskape/public_html/processlogin.php:9) in /home/pkskape/public_html/processlogin.php on line 46
Warning: Cannot modify header information - headers already sent by (output started at /home/pkskape/public_html/processlogin.php:9) in /home/pkskape/public_html/processlogin.php on line 47
Processing Login... If this page appears for more than 5 seconds click here...
Moved by Mattps22004 (Forum Moderator) from Website Designing & Development: Please post in the correct forum next time, thanks.


.
Reply With Quote







