HTTP Headers
25/31
Database Support
Cookies
You can add headers to the HTTP response in PHP using the
header()
function.
Redirection
<?php
header
(
'Location: http://www.php.net/'
);
?>