I have the following very basic PHP script:
<?php
$username = $_POST['username'];
$password = $_POST['password'];
echo "This is the username: ";
echo $username;
?>
And this is the output:
This is the username:
I have my username and password parameters in my url. Why won't it echo the username?