From 17fda1aa62f3c2047b746ba841c8d2ed2dd15bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Gagnon-Grenier?= Date: Tue, 6 Sep 2016 13:35:01 -0400 Subject: [PATCH] #54 more clearness --- 04-http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04-http.md b/04-http.md index cc33fe3..27fd874 100644 --- a/04-http.md +++ b/04-http.md @@ -45,7 +45,7 @@ This will send the response data to the browser. If you don't do this, nothing h The second parameter of `header()` is false because otherwise existing headers will be overwritten. -Right now it is just sending an empty response back to the browser with the status code `200`; to change that, add the following code between the code snippets from above: +Right now it is just sending an empty response back to the browser with the status code `200`; to change that, add the following code before sending the headers through the foreach above: ```php $content = '

Hello World

';