Jump to content

IF statements not working.


j9sjam3

Recommended Posts

Hello.

I have no idea why this isn't working.

Would be brilliant if you could help.

This is sort of AJAX as well, using the jQuery framework, but that's not where the problem lies.

This is the code that I have...

$('#login3').click(function() {
	blockUI();
	$.ajax({
		type: "POST",
		url: "login.inc.php",
		data: "id=login&url=true&user="+$('#username').val()+"&pass="+$('#password').val(),
		success: function(msg){
			if(msg === "loggedin") {
				unblockUI();
				$('#slft').hide("slide", { direction: "left" }, 2000);
				$('#srht').hide("slide", { direction: "right" }, 2000);
				$('#login2').hide("slide", { direction: "down" }, 1000);
				var t = setTimeout("document.location = 'index.php?'", 2000);
				throw('Redirecting...');
			} else {
				if(msg === 'banned') {
					window.location = 'index.php';
				} else {
					alert(msg);
					unblockUI();
				}
			}
		}
	});
});

 

It ALWAYS shows an alert, nothing else.

Cheers,

James.

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.