Jump to content

netpumber

Members
  • Posts

    107
  • Joined

  • Last visited

Everything posted by netpumber

  1. hey dude i know as ampersand this symbol '&' but i can't find one in the code. Except if you mean something else...
  2. I check the db fields 10 times and the registers... Also i run this to check if the connection established and no error return... <?php if ($dbc = @mysql_connect('localhost','web','@qwerty@')) { if (!@mysql_select_db ('web_site')) { die('<p> Could not select the database brcause:<b>'. mysql_error() .'</b></p>'); } }else{ die('<p>Could not connect to MYSQL because:<b>' . mysql_error() . '</b></p>'); } ?>
  3. I set this : error_reporting (E_ALL); but nothing change...
  4. yeah..i remove it and nothing happened... No redirection no errors...What the hell....? :-\
  5. PHP 5.2.6 <-- this is my php version..
  6. The username and the password in db are matching exactly with the posted form . Also what you mean to lose this line ? And here is the form code . Maybe you ll found here some problem <html> <head><title>[login]</title></head> <body bgcolor="black"> <p> <p> <br> <br> <br> <br> <br> <table align="center" border="1" bgcolor="white"> <tr><td></td></tr> <tr><td></td><td> <form method="POST" action="login.php"><br> Username:<input type="text" name="username"><br><br> Password:<input type="password" name="password"><br><br> <input type="submit" value="Login" name="submit"> </form> </td><td></td></tr> <tr><td></td></tr> </table> </body>
  7. Hi all !! I m new here and i want to ask your help.. This is the code from a login.php page that i code: login.php This code is in the admin.php <?php if ($_SESSION['authorized'] != true) { header("Location: login_form.php"); exit; } ?> The problem is that when i type the username and the password in login_form.php it doesn't redirect me in admin.php and it stays in login_form.php Do you have any idea on why this happens? Thanks !
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.