Last active
August 29, 2015 14:17
-
-
Save harisrozak/567d04ef11c5a4ade126 to your computer and use it in GitHub Desktop.
PHP :: Redirect with meta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// redirect with meta | |
$location = 'http://harislab.com'; | |
echo "<meta http-equiv='refresh' content='0;url=$location' />"; | |
echo "<h3>Redirecting...</h3>"; | |
exit(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment