1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-08-04 22:07:58 +02:00

Adding new HTML chapter under web

This commit is contained in:
Andrew Davis
2020-02-02 10:21:14 -06:00
parent b8af664af3
commit ee7c6c4f47
3 changed files with 48 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ description = "Handling HTTP Requests in PHP"
tags = ["php", "http", "server"]
slug = "http-server"
previous = "web/http-post.html"
next ="web/php-html.html"
+++
In PHP, you usually use a separate web server program that accepts HTTP requests and passes them to PHP to create a response. Common examples of separate web server programs are Apache and Nginx. However, PHP has a built in web server we can use during development.