Jump to content

[SOLVED] problem with log in form


dachshund

Recommended Posts

Hi,

 

This log in form is supposed to check if they are already logged in and if they are echo ACCOUNT | LOGOUT. But when they're logged in, it just doesn't echo anything and it's just blank.

 

Can anyone see where i'm going wrong?

 


<?php

if ($_SESSION['uid']){

echo "ACCOUNT | LOGOUT\n";

}else {
     
  	if(!$_POST['submit'] == 'login'){
      	echo "<div id=\"blanket\" style=\"display:none;\"></div>\n";
  	echo "<div id=\"popUpDiv\" style=\"display:none;\">\n";
  	echo "<a href=\"#\" onclick=\"popup('popUpDiv')\">Close</a>\n";
  	echo "<form name=\"login\" method=\"post\" action=\"#\">\n";
  	echo "<p>Username <input name=\"username\" type=\"text\"></p>\n";
  	echo "<p>Password <input name=\"password\" type=\"password\"></p>\n";
  	echo "<p class=\"submitbutton\">\n";
  	echo "<div align=\"left\">\n";
  	echo "<input type=\"submit\" name=\"submit\" class=\"loginformtext\" value=\"Submit\">\n";
  	echo "</div>\n";
  	echo "</p>\n";
	echo "</form>\n";
  	echo "<span class=\"login_text\"><a href=\"#\" onclick=\"popup('popUpDiv')\">LOG IN</a>\n";	
	echo "</div>\n";			
  
   	}else {
  	$user= $_POST['username'];
  	$pass= $_POST['password'];
  
  		if($user && $pass){
		$sql = "SELECT * FROM `users` WHERE `username`='$user'";
		$res = mysql_query($sql) or die(mysql_error());

			if(mysql_num_rows($res) == 1){
			$epass = md5($password);
		    $sql2 = "SELECT * FROM `users` WHERE `username` ='$user' AND `password`='$epass'";
			$res2 = mysql_query($sql2) or die(mysql_error());

			}else {
			echo "USERNAME OR PASSWORD INCORRECT\n";
			}

	   }else {
	   echo "USERNAME OR PASSWORD INCORRECT\n";
	   }

}
}

?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.