|
I cant seem to find an example of invisible php forms any where. Ive tryed a lot of combinations but none seem to work.
The one i use with no error messages is:
<form action="editnews.php" method="POST">
Email: <name="email" value="user@domain.com" />
<input type="submit" />
</form>
-------------------
$email = $_POST["email"];
echo $email;
//
But the value is not transfered. What am I doing wrong?
|