Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed Working with $_GET and $_POST in PHP!
Instruction
Working with $_GET Values
The $_GET
superglobal is populated with information from the URL, in the form of a query string. You'll often build pages that use the information to display custom content to a user. For example, you could build a PHP website that displays profiles for different users. The user's profile name is sent along in the query string like this: http://localhost:8080/index.php?name=jonathan
A qu...