Wednesday 5 November 2014

How To Redirect To Another Page in PHP


How To Redirect To Another Page in PHP

You can redirect any page using the below code in php.

header( "Location: http://www.example.com/thankyou.html" );

1 comment:

Unknown said...

Please note that nothing should be outputted before the header function, if not it will fail.

More info here:

"http://webtricksandtreats.com/php-page-redirect/