Need help!!!

should be
<form action ="post" method = ? >
I guess

Actually, the code for forms should be something like this:
<form action="somescript.php" method="post">

For method you have two choices: post and get, the difference is how the information is passed from the form to the processing script.
 
Back
Top