PHP short notes
Both get and post creates an array (get and post are superglobals).
$_GET is an array of variables passed to the current script via the URL parameters.
$_POST is an array of variables passed to the current script via the HTTP POST method.
When to ...
laiba.hashnode.dev1 min read