Jump to content

header('Location: index.php'); with ajax


Eggzorcist

Recommended Posts

The problem with doing this with the PHP script that you're making this ajax request to is that it's redirecting the ajax request, not the browser itself. You either need to perform the redirect with javascript after the ajax request by putting the following in the ajax callback:

 

location.href = 'index.php';

 

Providing they've logged in correctly and you could do a different one if the login failed.

 

Hope that helps

 

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.