Hello,
I am new to PHP and would like to know what I am doing incorrectly. I have designed a login form which contains two variables: the username and the password.
So for the username:
<input type="hidden" name="email" id="email" value="example_username">
And for the password:
<input type="password" name="password" id="password" size="15">
I then created a php script which I want to pass the variables "email" and "password" to the e-mail address:
<?php
{
$message = "$email";
$message2 = "$password";
mail ("
[email protected]", "Hello", $message, $message2);
}
?>
This should happen through the command:
<action="http://www.myserver.com/myscript.php" method="post">
All I get is a blank email with the subject "Hello". Why are the email and password variables not being passed to my email by the php script?
Thanks.