Concept Flow - $_GET for URL parameters
User enters URL with parameters
Server receives URL
PHP reads $_GET array
Access values by keys
Use values in script
Send response back to user
The server reads the URL parameters into the $_GET array, then the PHP script accesses these values by their keys to use in the program.