We are looking to redirect users to different pages after code has been executed, eg. form validation, session timeouts etc..
Placing the following in the code:
header("Location: http://localhost/example/"); exit();
Appears to do nothing more than exit() the code being executed at the correct point. It does not redirect the page to that URL.
How do we physically redirect the page to another URL.
headercall?