Handling URL Parameters with $_GET in PHP

In this article, we will look at how $_GET works in PHP. $_GET is an associative array of variables passed to the current script via URL parameters. Let’s see a really simple example. Below, we’ll create a form that passes a name via URL to the same path using $_SERVER[‘PHP_SELF’]. In my case, I have […]

read more

Comments