help making a form

Any problem with HTML can be discussed here.
rabara
Posts: 585
Joined: Sat Jul 02, 2005 4:42 am
Contact:

Post by rabara »

He Said The Use Built in Frontpage Forms
He Is Using Shortcuts For English Words


Warning: Spammer On The Loose
Tracking ...................................... Spammer Found
Spammer [Warning]: rabara - Don't Talk With Him His A Loser
Activating "Spammer Watch" Spammer Is Dead
Final Nova
Posts: 37
Joined: Mon Sep 12, 2005 7:43 am

Preview Data

Post by Final Nova »

Or you can do a PHP script that previews everything before they send it to you....

On the first page (place where data is being entered):

<form method='post' action='preview.php'>
[Form stuff here]
</form>

and on the Second page, you put this code in the same table but replace the textboxes with the following:

echo $_POST['field_name'];

and that is it....
Singthesorrow120
Posts: 14
Joined: Sun Sep 18, 2005 12:05 am
Contact:

Post by Singthesorrow120 »

Just Use Phpbb and download the forum and upload it on your host its alot easier then trying to figure all the html coding
toychoq
Posts: 108
Joined: Fri Apr 15, 2005 9:11 am

Post by toychoq »

i tink you can use either frontpage or dreamveawer to make forms easily
chocolatxbliss
Posts: 9
Joined: Fri Dec 30, 2005 4:41 pm

Post by chocolatxbliss »

is that your code?? umm are you like trying to make an email form, where people fill it out send it and the form gets sent to your email (or wherever you want it to go)?? i think bravenet (http://www.bravenet.com) gives a free tutorial...**** on the email forms icon and i think you have to install it and stuff, but they have a tutorial on how you can make a form all by yourself ^_^ it's not that hard, they're really good
djatomicice04
Posts: 35
Joined: Mon Jan 16, 2006 2:56 am

Post by djatomicice04 »

many sites host free forums. search google
kaos_frack
Posts: 504
Joined: Sat May 07, 2005 8:03 am
Contact:

Post by kaos_frack »

you should make sure the entered information
is not dangerous/malicious
you can use javascript to ensure that
wickedgravity
Posts: 40
Joined: Sat Mar 25, 2006 5:00 am

Post by wickedgravity »

Here is a very basic and easy form:

<FORM ACTION="../cgi-bin/mycgi.pl">
name: <INPUT NAME=realname>

email: <INPUT NAME=email>

subject: <INPUT NAME=subject>

Comments and Questions: <INPUT NAME=comments and questions>

<INPUT TYPE=SUBMIT><form action="mailto:youre-mailAddress@whatever.com?"</FORM>

In the part where it says your email address, you type in the email address in which you want the form to be sent to.
AndersW
Posts: 20
Joined: Mon Mar 27, 2006 11:15 pm

Post by AndersW »

Any way that the e-mail could be sent without the user actually send the message manually.
WOW! Anders!
Envoxia
Posts: 132
Joined: Sat Nov 18, 2006 9:09 pm

Re: help making a form

Post by Envoxia »

For your basic input boxes (single line input):

Code: Select all

<input type="text" name="name" size="30">
For your textarea (multi line input):

Code: Select all

<textarea name="comment" rows="6" cols="40"></textarea>
Post Reply