Quantcast
Viewing all articles
Browse latest Browse all 10

Using header to redirect the browser

The PHP header function allows redirection of the browser, among other cool things.

Example redirecting the browser to php-scripts.com homepage:

<?php
header(”Location: http://www.php-scripts.com/”);
?>

Viewing all articles
Browse latest Browse all 10

Trending Articles