@@ -12,18 +12,18 @@ how to work with the requests and responses within CodeIgniter.
1212What is HTTP?
1313=============
1414
15- HTTP is simply a text-based language that allows two machines to talk to each other. When a browser
15+ HTTP is simply a text-based convention that allows two machines to talk to each other. When a browser
1616requests a page, it asks the server if it can get the page. The server then prepares the page and sends
17- response back to the browser that asked for it. That's pretty much it. Obviously, there are some complexities
17+ a response back to the browser that asked for it. That's pretty much it. Obviously, there are some complexities
1818that you can use, but the basics are really pretty simple.
1919
20- HTTP is the term used to describe that language . It stands for HyperText Transfer Protocol. Your goal when
20+ HTTP is the term used to describe that exchange convention . It stands for HyperText Transfer Protocol. Your goal when
2121you develop web applications is to always understand what the browser is requesting, and be able to
2222respond appropriately.
2323
2424The Request
2525-----------
26- Whenever a client makes a request (a web browser, smartphone app, etc), it is sending a small text message
26+ Whenever a client (a web browser, smartphone app, etc) makes a request , it sends a small text message
2727to the server and waits for a response.
2828
2929The request would look something like this::
@@ -67,7 +67,7 @@ Working with Requests and Responses
6767-----------------------------------
6868
6969While PHP provides ways to interact with the request and response headers, CodeIgniter, like most frameworks,
70- abstract them so that you have a consistent, simple interface to them. The :doc: `IncomingRequest class </libraries/incomingrequest >`
70+ abstracts them so that you have a consistent, simple interface to them. The :doc: `IncomingRequest class </libraries/incomingrequest >`
7171is an object-oriented representation of the HTTP request. It provides everything you need::
7272
7373 use CodeIgniter\HTTP\IncomingRequest;
0 commit comments