577 B
577 B
HTTP
PHP already has a few things built in to make working with HTTP easier. For example there are the superglobals that contain the request information.
These are good if you just want to get a quick and dirty script runnin. But if you want to write clean, maintanable, SOLID code, then you will want a class with a nice object oriented interface that you can use in your application.
to be continued...