the reset key only clears the last field, not all the fields???
<form action="form3.php" method="post" >
<p> First & Last Name: <input type="text" maxlength=50 name="fullname" value="<?php print ($fullname); ?>" > </p>
<p> Email Address: <input type="string" maxlength=50 name="email" value="<?php print ($email); ?>" > </p>
<p> Telephone: <input type="string" maxlength=13 name="tel" value="<?php print ($tel); ?>" > </p>
<p> Comments: <textarea name="comment" cols=65 rows=10> </textarea> </p>
<input type="hidden" name="action" value="process">
<input type="submit" value="Send Information">
<input type="reset" value="Clear">
</form>
Thanks.