alex3 Posted July 19, 2009 Share Posted July 19, 2009 Hi, I'm having problems with an 'if' statement inside a $.post statement. I haven't put this in AJAX because I don't think the problem is with post, but rather something wrong with the 'if' statement I can't see. $.post( "login_check.php", // File to POST to { username:userName, password:passWord }, // Data to POST to file function(data) { // Function to call after POST, 'data' is data recieved from POST file if(data=="yes"){ alert('woop'); window.location='index.php'; } else { alert('dang'); $('form #submit').show(); } } ); I really can't see the problem with the 'if' statement, but even if I put the right values in to the form, I always get the 'dang' pop up. I know that the values are right because if I go to index.php (which verifies that a user has logged in) it verifies correctly. userName and passWord are variables defined earlier. What have I missed? Quote Link to comment Share on other sites More sharing options...
alex3 Posted July 20, 2009 Author Share Posted July 20, 2009 Stupid mistake. Had the echos in the PHP file still containing some stuff I used during testing rather than just 'yes' and 'no'. Works fine now. What an idiot! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.