View Full Version : Need Help With Forms...


Redkaven
03-22-2003, 02:51 PM
I us ethis code on my website to get information from people interested in joining. I need that information mailed to me, and it does, but it's all scrambled with code and the textarea's do not work.

Any way to clean this up a bit and make it work better?

Thanks LOTS,


--------------------------------------
This is what I have:


<FORM METHOD=POST ACTION="mailto:redkaven@yahoo.com">

XBconnect ID:<BR>
<INPUT TYPE="text" NAME="id" size="35"><BR>

Xbox LIVE GamerTag:<BR>
<INPUT TYPE="text" NAME="id" size="35"><BR>

Xbox Name:<BR>
<INPUT TYPE="text" NAME="xboxname" size="35"><BR>

Divisions You Are Available For:<BR>
<INPUT TYPE="text" NAME="divisions" size="35"><BR>

State: <BR>
<INPUT TYPE="text" NAME="state" size="35"><BR>

Age:<BR>
<INPUT TYPE="text" NAME="age" size="35"><BR>

Favorite Quote:<BR>
<INPUT TYPE="text" NAME="quote" size="35"><BR>

Public E-mail:<BR>
<INPUT TYPE="text" NAME="e-mail" size="35"><BR>

Instant Messanger Name/Type:<BR>
<INPUT TYPE="text" NAME="im" size="35"><BR>

Websites You Have/Sponsor:<BR>
<INPUT TYPE="text" NAME="websites" size="35"><BR>

Favorite Xbox Game:<BR>
<INPUT TYPE="text" NAME="favoritegame" size="35"><BR>

Online Games You Own:<BR>
<INPUT TYPE="text" NAME="games" size="35"><BR>

Xbox Fun Enhancement Gear:(accessories, sound system, tv, etc.)<BR>
<TEXTAREA COLS="45" ROWS="5"></TEXTAREA> <BR>

Other Affiliations:(or previous affiliations with clans, etc.)<BR>
<TEXTAREA COLS="45" ROWS="5"></TEXTAREA> <BR>

More About Yourself:<BR>
<TEXTAREA COLS="45" ROWS="5"></TEXTAREA> <BR><BR>
<CENTER>
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset" VALUE="Clear">
</CENTER>
</FORM>
-------------------------------

-Redkaven

pb&j
03-22-2003, 03:22 PM
try adding this to your starting FORM tag...
enctype="text/plain"

forms using MAILTO in the ACTION value are not reliable. you are much better off using a server side language version (Perl or PHP) if possible. or using a hosted script such as the one found on bravenet.com site.