Click here to Skip to main content
16,018,294 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi All,

I am new to jquery ajax and php. I am creating a login page with emailid and password fields.

I have written a service to check the emailid and password with database table data. So I checked my webservice with Google Chromes 'Advanced Rest Client' plugins and it is showing me result as 'Login successfully' which was my intent, if user credentials are current with database then show this msg.

Now the main problem arises when i try to do this in browser eg. "localhost/myapp/Login.php" with two text boxes. When i hit submit button I get a blank message.

My js file code is as shown below,

$(document).ready(function() {

var emailid='';
var password='';

$('#btnsubmit').click(function(e)
{
emailid=$(#emailid).val();
password=$(#password).val();

if(emailid && password)
{
var userData='emailid='+ emailid +'&password='+ password;

Authenticate_User(userData);//call function
}
else
{
alert('I am in else condition of js file"');
}

});

function Authenticate_User(userData)
{
$.ajax({
url: 'services/Login.php',
type: 'POST',
data: userData,
contentType:'application/x-www-form-urlencoded',
//dataType: 'json',
processData: false,
success: function(data)
{
console.log('Success is here '+ JSON.stringify(data));
//window.Location('http://localhost/myapp/home.html');
//window.location='http://localhost/myapp/home.html';
alert('Success is here');
},
error: function(XMLHttpRequest,textStatus,errorThrown)
{
console.log('ERROR:' + JSON.stringify(XMLHttpRequest.responseText));
alert(JSON.stringify(XMLHttpRequest.responseText));

}

});
}

});

When I entry email id and password and clicks submit then it gives blank msg and then it i try to click submit button without any data i.e. if emailid and password are blank then it shows 'I am in else condition' which i have written up there....

Please suggest to get out of this problem ....
Posted
Comments
Karthik Chintala 19-Mar-13 8:49am    
Try changing "url: 'services/Login.php'" to "url: '/services/Login.php'" in ajax request

1 solution

C#
emailid=$(#emailid).val();
password=$(#password).val();




shoulld be


C#
emailid=$('#emailid').val();
password=$('#password').val();
 
Share this answer
 
Comments
Phionix11 19-Mar-13 5:37am    
emailid=$('#emailid').val();
password=$('#password').val();

After making changes as per ur comment i still have the same problem

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900