Jump to content

devileyes

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

devileyes's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [quote author=ToonMariner link=topic=106247.msg424669#msg424669 date=1156945853] include('connect.php'); I assume this contains all teh login stuff for the database - put the mysql_connect and mysql_select_db in that file too - then you don't need to put it in every page! seems an awfully convoluted method of doing things IMO [/quote] Still give the same error
  2. I put it like this but it gives an error - Could not select database because No Database Selected <?php include "connect.php"; if (logIn($_POST['username'], $_POST['password']) )   header("Location: adminarea.html"); else   die;   function logIn($uid, $pwd) {   // connect to the mysql server   $link = mysql_connect($server, $db_user, $db_pass)     or die ("Could not connect to mysql because ".mysql_error());   // select the database   mysql_select_db($database)     or die ("Could not select database because ".mysql_error()); $match = "select id from $table1 where username = '$uid'           AND password = '$pwd'";   $qry = mysql_query($match)     or die ("Could not match data because ". mysql_error());   $num_rows = mysql_num_rows($qry);   if ($num_rows <= 0) { ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> </head> <body bgcolor="#000000" text="#FF0000" link="#FFFF00" vlink="#FFFF00" alink="#FFFF00"> <div align="center"> <?php     echo "<p>wrong username or password !</p>";     echo "<a href=adminlogin.html>Go Back</a>"; return false;   }   else   return true; } ?>
  3. [quote author=ronverdonk link=topic=106221.msg424581#msg424581 date=1156939508] I put it like this but it sas - Could not select database because No Database Selected [/quote]
  4. If i  cannot have a header sent after i  have outputted anything to the screen, how the script should look like? What do i have to do? What to change? Pls explain me
  5. I have a very simple login script everything is working great but when i try to put 'header' in the 'else' conditiont it doesn't work, where is my mistake and how to work it?.Here is my script: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> </head> <body bgcolor="#000000" text="#FF0000" link="#FFFF00" vlink="#FFFF00" alink="#FFFF00"> <div align="center"> <?php include "connect.php"; // connect to the mysql server $link = mysql_connect($server, $db_user, $db_pass) or die ("Could not connect to mysql because ".mysql_error()); // select the database mysql_select_db($database) or die ("Could not select database because ".mysql_error()); $match = "select id from $table1 where username = '".$_POST['username']."' and password = '".$_POST['password']."';"; $qry = mysql_query($match) or die ("Could not match data because ".mysql_error()); $num_rows = mysql_num_rows($qry); if ($num_rows <= 0) { echo "wrong username or password !<br>"; echo "<p>"; echo "<a href=adminlogin.html>Go Back</a>"; } else { echo "<a href=adminarea.html target=_parent>Enter</a>"; [color=red]// I wont here to be header ("Location: adminarea.html");[/color] } ?> </div> </body> </html>
×
×
  • 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.