This topic is locked
[SOLVED]

 Login fails - other action

8/20/2012 08:55:33
PHPRunner General questions
W
Windfall author

How do I redirect to another page if the login fails?

C
cgphp 8/20/2012

There is a dedicated event for unsuccessful login: http://xlinesoft.com/phprunner/docs/after_unsuccessful_login.htm
You can redirect to another page using a code like this:

header("Location: yourpage.php");

exit();
W
Windfall author 8/20/2012

Thank you!