I have this piece of code:
$user = $_GET["user"];
echo $user;
which outputs:
1234
And the URL looks like this :
http://localhost/getkey.php?user=1234
How can I get multiple variables from the URL separated by a "&"?
For example:
http://localhost/getkey.php?user=1234&password=4321