Constructing a Response
Let's find out what goes inside the body of a response.
We'll cover the following...
Response body
In the case of random.php, almost everything that is inside this file will be added to the response body,
except for what is between <?php and ?>.
The PHP server will interpret the code in between these “tags”, and if anything in that code calls echo, it will ...
Ask