Page Redirection script in PHP


Page Redirection are more than methods. But Below Show three method




Method 1 :

 For example, redirecting to phpweblearn.blogspot.in

header("location:http://phpweblearn.blogspot.in");

Method 2 :

This is html meta tag,

echo "<meta http-equiv='refresh' content='0;url=http://phpweblearn.blogspot.in'>";

Method 3 :

echo '<script>document.location.href="http://phpweblearn.blogspot.in"</script>';
Previous
Next Post »
Show Comments: OR