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
https://forums.phpfreaks.com/topic/222208-if-statements-not-working/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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