PHP Web Development: How to use HTTP Headers in PHP

Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026

The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.


PHP lets us set the HTTP headers of a response through the header() function.

HTTP Headers are a way to send information back to the browser.

We can say the page generates a 500 Internal Server Error:

<?php
header('HTTP/1.1 500 Internal Server Error');
?>

Now you should see the status if you access the page with the Browser Developer Tools open:

We can set the content/type of a response:

header('Content-Type: text/json');

We can force a 301 redirect:

header('HTTP/1.1 301 Moved Permanently');
header('Location: https://flaviocopes.com');

We can use headers to say to the browser “cache this page”, “don’t cache this page”, and a lot more!

Lessons in this unit:

0: Introduction
1: Handling HTTP requests in PHP
2: ▶︎ How to use HTTP Headers in PHP
3: How to use forms in PHP
4: How to use Cookies in PHP
5: How to use PHP Cookie-based Sessions
6: Deploying PHP applications