Is there a way that I can set "$POST [username] and $POST [password]" as variables? So instead of using:
print('Your New Username is'. $_POST['username'] .'<br>');
print('Your New Username is'. $_POST['password'] .'<br>');
I could do something like:
print('Your New Username is'. $username .'<br>');
print('Your New Password is'. $password .'<br>');
I tried just using:
$username = "$_POST['username']";
That didn't work out for me. (I also tried it without the quotes around $_POST['username'].