Alliedassault           
FAQ Calendar Search Today's Posts Mark Forums Read
Go Back   Alliedassault > Lounge > Offtopic
Reload this Page html question
Offtopic Any topics not related to the games we cover. Doesn't mean this is a Spam-fest. Profanity is allowed, enter at your own risk.

Reply
 
Thread Tools Display Modes
html question
Old
  (#1)
cameltoe is Offline
Senior Member
 
Posts: 2,324
Join Date: Nov 2002
Location: ATX
   
Default html question - 01-12-2003, 11:45 PM

whats the html code to make a form for ppl to fill out and when they click a send button it sends it to your email.. it would be helpful if someone could tell me thx.. or if someone could link a site that has that option it would be nice
  
Reply With Quote
Old
  (#2)
Old Reliable is Offline
Senior Member
 
Posts: 11,144
Join Date: Mar 2002
   
Default 01-13-2003, 12:31 AM

http://www.boogiejack.com
  
Reply With Quote
Old
  (#3)
Wiseblood is Offline
Junior Member
 
Posts: 27
Join Date: Jun 2002
Location: Calgary, AB CANADA
   
Default 01-13-2003, 02:04 AM

Hey, cool site.
Thanx.
  
Reply With Quote
Old
  (#4)
cameltoe is Offline
Senior Member
 
Posts: 2,324
Join Date: Nov 2002
Location: ATX
   
Default 01-13-2003, 02:16 AM

tight site but it doesnt have exactly what i need
i was wanting to do something like they did [url=http://rfss.net:8080/join_us.htm:e257a]HERE[/url:e257a], i know how to do all the text boxes and such but how do i make the submit button send it to my email or whatever
  
Reply With Quote
Old
  (#5)
Bleuachdu is Offline
Senior Member
 
Posts: 2,345
Join Date: Apr 2002
Location: Detroit, MI
  Send a message via AIM to Bleuachdu  
Default 01-13-2003, 04:16 AM

Quote:
Originally Posted by cameltoe
tight site but it doesnt have exactly what i need
i was wanting to do something like they did [url=http://rfss.net:8080/join_us.htm:2315c]HERE[/url:2315c], i know how to do all the text boxes and such but how do i make the submit button send it to my email or whatever
Thats CGI/Perl. Learn to program it.
  
Reply With Quote
Old
  (#6)
Star85 is Offline
Senior Member
 
Posts: 2,081
Join Date: Mar 2002
Location: Philly, PA USA
  Send a message via AIM to Star85  
Default 01-13-2003, 07:04 AM

Try http://www.htmlgoodies.com
  
Reply With Quote
Old
  (#7)
Star85 is Offline
Senior Member
 
Posts: 2,081
Join Date: Mar 2002
Location: Philly, PA USA
  Send a message via AIM to Star85  
Default 01-13-2003, 07:05 AM

Not sure if they have what you need but just a quick reference to a lot of HTML.
  
Reply With Quote
Old
  (#8)
Bazooka_Joe is Offline
Senior Member
 
Posts: 12,585
Join Date: Jan 2002
Location: Staten Island, NY, USA
 Send a message via ICQ to Bazooka_Joe Send a message via AIM to Bazooka_Joe Send a message via MSN to Bazooka_Joe Send a message via Yahoo to Bazooka_Joe  
Default 01-13-2003, 12:25 PM

You first need an email relay server. You can use this one, this is from http://www.clanpages.com:

[code:1a437]<form action="http://cgi.clanpages.com/formmail/formmail.asp" method="POST">[/code:1a437]

This is the email address that the form will go to:

[code:1a437]<input type="HIDDEN" name="formEMAIL" value="fogbazookajoe@aol.com">
[/code:1a437]

If you want to CC the message to someone else, use the CC field:

<input type="HIDDEN" name="formCC" value="CC@ADDRESS.COM">

You will need a redirect page to let the person know that their email was sent correctly. This will load after the person presses the "Submit" button:

[code:1a437]<input type="HIDDEN" name="formREDIRECT" value="http://mohaa.xgshosting.com/joe/confirm.htm">[/code:1a437]

The subject of the email message you will get from the form:

[code:1a437]<input type="HIDDEN" name="formSUBJECT" value="New Map Request for AA.com Server">[/code:1a437]


That's the form setup. Now, you have to add the fields. There are numerous ones (buttons, checkmark boxes, text boxes, drop-downs). Tell me which ones you want to use, and I'll post how to use em.
  
Reply With Quote
Old
  (#9)
cameltoe is Offline
Senior Member
 
Posts: 2,324
Join Date: Nov 2002
Location: ATX
   
Default 01-14-2003, 01:08 AM

mostly i want the person to type in the stuff but i want one drop down box where they choose a weapon or something
  
Reply With Quote
Old
  (#10)
Bazooka_Joe is Offline
Senior Member
 
Posts: 12,585
Join Date: Jan 2002
Location: Staten Island, NY, USA
 Send a message via ICQ to Bazooka_Joe Send a message via AIM to Bazooka_Joe Send a message via MSN to Bazooka_Joe Send a message via Yahoo to Bazooka_Joe  
Default 01-14-2003, 11:31 AM

Ok here's a few:

This one is a form text box. HEIGHT = the height of the cell it is in, ALIGN = Where in the cell it's aligned, IMPUT NAME = What the feild will come back looking like on your email message (This MUST BE ONE WORD, NO CHARACTERS EXCEPT LETTERS & NUMBERS), SIZE = Length of the box:

[code:e4ffc]<td height="22" align="center"><input name="Name" size="20"></td>
</tr>[/code:e4ffc]

Here's a drop-down box. HEIGHT & ALIGN = Height/alignment of cell, not the box, SELECT NAME = Name in Email that will show (remember, one word), OPTION SELECTED = The Option that is shown by default:

[code:e4ffc]<td height="22" align="center"><select name="TypeOfMap">
<option selected>TDM</option>
<option>OBJ</option>
<option>Both</option>
</select></td>[/code:e4ffc]

And this is a normal text box. HEIGHT & ALIGN = height & alignment of the cell, not the text box, TEXTAREA ROWS = how many rows tall the box is, NAME = name in email message, COLS = how many characters can be displayed on a single line:

[code:e4ffc]<td height="36" align="center">



<textarea rows="2" name="MapURL" cols="20"></textarea></p>
</td>[/code:e4ffc]

Here's a page I made using the three.

[url:e4ffc]http://mohaa.xgshosting.com/joe/maprequest.htm[/url:e4ffc]
  
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.12 by ScriptzBin
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBulletin Skin developed by: vBStyles.com
© 1998 - 2007 by Rudedog Productions | All trademarks used are properties of their respective owners. All rights reserved.