From 4169afd54251e787c03723ec34aa4e9356f4bcd1 Mon Sep 17 00:00:00 2001 From: Patrick Louys Date: Tue, 1 Nov 2016 16:01:35 +0100 Subject: [PATCH] Made code location more explicit --- 04-http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04-http.md b/04-http.md index 09abd12..53ed554 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 between the code snippets from above (just on top of the `foreach` statement): ```php $content = '

Hello World

';