Posted by fiziwig on 09/28/38 11:43
You have:
<form action="you_are_mighty.php" name="mighty">
....
First Name: <input name="firstname" class="input" type="text"
size="20"><p>
There is no such parameter as "name=" in the <form...> tag so that does
nothing.
You did not specifiy method, so it defaults to "get" not "post", so
your variables are never set.
There is no such parameter as "class=" in the <input...> tag so that
does nothing.
Try:
<form action="you_are_mighty.php" method="post">
....
First Name: <input type="text" name="firstname" size="20"><p>
--gary
[Back to original message]
|