Does PHP have such a thing as the response.redirect in ASP?
Many thanks.
Printable View
Does PHP have such a thing as the response.redirect in ASP?
Many thanks.
If that redirects to another location then there is:
Code:header("Location: YourPage.php");
Have a look here: www.php.net/header
Cheers,
RyanJ
Thank you sciguyryan.