Jump to content

function is not working


karthikanov24

Recommended Posts

hi

the PASSWORD( ) used in the following code, is used to take the newly added password from user to database

 

 

   function addUser()
{
    $userName = $_POST['txtUserName'];
$password = $_POST['txtPassword'];

// check if the username is taken
$sql = "SELECT user_name
        FROM tbl_user
		WHERE user_name = '$userName'";
$result = dbQuery($sql);

if (dbNumRows($result) == 1) {
	header('Location: index.php?view=add&error=' . urlencode('Username already taken. Choose another one'));	
} else {			
	$sql   = "INSERT INTO tbl_user (user_name, user_password, user_regdate)
	          VALUES ('$userName',PASSWORD('$password'), NOW())";

	dbQuery($sql);
	header('Location: index.php');	
}
}

 

 

But here in the admin login code as follow,the PASSWORD( ) is not working. If a call is made to this funtion it shows error as:UNDEFINED FUNCTION PASSWORD( )

 

function doLogin()
{

$userName = $_POST['txtUserName'];
$password=$_POST['txtPassword'];
        

// first, make sure the username & password are not empty
if ($userName == '') {
	$errorMessage = 'You must enter your username';
} else if ($password == '') {
	$errorMessage = 'You must enter the password';
} else {
	// check the database and see if the username and password combo do match
	$sql = "SELECT user_id
	        FROM tbl_user 
			WHERE user_name = '$userName' AND user_password =PASSWORD('$password')";

$result = dbQuery($sql);

 

 

what is the correct codes.....?

 

 

Thanks

karthikanov24

 

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.