usage of get and post method in php code example
Example 1: php get
<form method="GET">
<input type="text" name="someName">
//The Name Attribute will be put into the _GET inside of php
<input type="submit" value="Submit">
</form>
<?php
$var = $_GET("someName");
echo ($var);
?>
Example 2: http response methods
resource HTTP response method is made up of three
components:
Response Status Code ==> 200, 301, 404, 500
(these are the most common ones)
Response Header Fields ==> Date, Server, LastModified, Content-Type
Response Body ==> This is the data that comes
back to the client from the server.