kellz Posted November 10, 2007 Share Posted November 10, 2007 yesh..ANOTHER one lol but I'm getting better at it^^ the problem with this 1 is that I cant redirect to the control panel, it tells me that I cant modify the header information because headers were already sent (i know this is because of the sessions) or not? annnywaaay is there another way i could go to the other page? I was going to try javascript but I guess that would have the same affect, right? here is the script: <?php session_start(); ?> <form name="form1" method="post" action=""> <label>username <input type="text" name="user"> </label> <br> <br> <label>Password <input name="pass" type="password" maxlength="30"> </label> <br> <br> <input type="submit" name="Submit" value="Login"> </form> <?php if (isset($_POST['Submit'])) login(); function login() { $logged=false; $tmp = "INSERT INTO `member` ( `loginName`, `password` ) VALUES ('user', MD5( 'password' ));"; //just to remember if (isset($_POST['user']) && isset($_POST['pass'])) { $user = $_POST['user']; $pass = $_POST['pass']; $con = mysql_connect("localhost","root",""); if (!$con) die('Could not connect: ' . mysql_error()); mysql_select_db("people", $con); $sql = "SELECT loginName FROM member WHERE loginName ='$user' AND password =md5('$pass')"; $result = mysql_query($sql) or die("Couldn't execute query 2."); $num = mysql_num_rows($result); if ($num > 0) $logged=true; if ($logged == true) { $_SESSION['auth'] = md5(uniqid(microtime()) . $_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']); header('location: admin.php'); //error } } mysql_close(); } ?> btw, OMG I LOVE SQL!! now i know i couldn't live with knowing php and not knowing SQL!! Quote Link to comment Share on other sites More sharing options...
Rihoj Posted November 10, 2007 Share Posted November 10, 2007 <?php if (isset($_POST['Submit'])) login(); function login() { $logged=false; $tmp = "INSERT INTO `member` ( `loginName`, `password` ) VALUES ('user', MD5( 'password' ));"; //just to remember if (isset($_POST['user']) && isset($_POST['pass'])) { $user = $_POST['user']; $pass = $_POST['pass']; $con = mysql_connect("localhost","root",""); if (!$con) die('Could not connect: ' . mysql_error()); mysql_select_db("people", $con); $sql = "SELECT loginName FROM member WHERE loginName ='$user' AND password =md5('$pass')"; $result = mysql_query($sql) or die("Couldn't execute query 2."); $num = mysql_num_rows($result); if ($num > 0) $logged=true; if ($logged == true) { $_SESSION['auth'] = md5(uniqid(microtime()) . $_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']); header('location: admin.php'); //error } } mysql_close(); } ?> that part of the code HAS to be at the top, I THINK. There is a certain part that has to be at the top, with NOTHING before it not even a space. try that. if that does not work , sorry. Quote Link to comment Share on other sites More sharing options...
kellz Posted November 10, 2007 Author Share Posted November 10, 2007 you mean : <?php session_start(); ?> ? I know that has to come first before anything, and it is.. this is (i think) why i cant modify the header (and i dont know what the hell im saying lol) but i think it has something to do with that and i know i cant put anything before session_start(); Quote Link to comment Share on other sites More sharing options...
cunoodle2 Posted November 10, 2007 Share Posted November 10, 2007 Yes, that is correct. Header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. You could always just do a meta refresh as they can be inserted anywhere.... <?php if ($logged == true) { $_SESSION['auth'] = md5(uniqid(microtime()) . $_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']); echo "<meta http-equiv=\"refresh\" content=\"0;url=admin.php\">\n"; } ?> Quote Link to comment Share on other sites More sharing options...
AXiSS Posted November 10, 2007 Share Posted November 10, 2007 you mean : <?php session_start(); ?> ? I know that has to come first before anything, and it is.. this is (i think) why i cant modify the header (and i dont know what the hell im saying lol) but i think it has something to do with that and i know i cant put anything before session_start(); You can have session start before a header, just move all of your login code above the HTML and it should work. Quote Link to comment Share on other sites More sharing options...
kellz Posted November 10, 2007 Author Share Posted November 10, 2007 thx^^ and now i have another problem on admin.php <?php session_start(); if (isset($_SESSION['auth'])) { if ($_SESSION['auth'] == md5(uniqid(microtime()) . $_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT'])) { echo 'hello '; } } else { echo "<meta http-equiv=\"refresh\" content=\"0;url=Untitled-1.php\">\n"; } ?> what bugs me the most about this is that 1 minute it worked fine and then it just stopped working ??? it does nothing.. if i open admin.php without going through the login page then nothing is there it doesnt even redirect to the login page.. if i open it through the login page with the right pass/user then it still does nothing and displays no message. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.