steve_81
06-05-2005, 03:33 AM
What do i need to add or what do i need to do to make this form work?
<form name="form1" method="post" action="">
<input name="textfield" type="text" value="Name">
<br>
<br>
<input name="textfield" type="text" value="E-mail">
</form>
<form name="form2" method="post" action="">
<input type="submit" name="Submit" value="Submit">
</form>
i just downloaded a new website template and i cant seem to get this form to work.
pretender
06-05-2005, 03:44 AM
What do i need to add or what do i need to do to make this form work?
<form name="form1" method="post" action="">
<input name="textfield" type="text" value="Name">
<br>
<br>
<input name="textfield" type="text" value="E-mail">
</form>
<form name="form2" method="post" action="">
<input type="submit" name="Submit" value="Submit">
</form>
i just downloaded a new website template and i cant seem to get this form to work.
<form name="form1" method="post" action="">Need to tell the action="what"
for example: <form name="form1" method="post" action="http://sendmail.cgi-bin">
1. you will need to fix your form into one full one...
<form name="form1" method="post" action="">
<input name="textfield" type="text" value="Name">
<br>
<br>
<input name="textfield" type="text" value="E-mail">
<input type="submit" name="Submit" value="Submit">
</form>
2. as posted earlier, the ACTION needs to send the form information to a "processing script" that will then send the info to your email inbox.
steve_81
06-07-2005, 06:05 PM
1. you will need to fix your form into one full one...
<form name="form1" method="post" action="">
<input name="textfield" type="text" value="Name">
<br>
<br>
<input name="textfield" type="text" value="E-mail">
<input type="submit" name="Submit" value="Submit">
</form>
2. as posted earlier, the ACTION needs to send the form information to a "processing script" that will then send the info to your email inbox.
What is the script that will allow the ACTION to send the form information to
a "processing script" that will then send the info to my email inbox?
MaGiCSuN
06-07-2005, 06:26 PM
php forms:
http://www.google.com/search?hl=nl&client=safari&rls=nl-nl&q=email+form+php&btnG=Zoeken&lr=
cgi forms:
http://www.google.com/search?hl=nl&client=safari&rls=nl-nl&q=email+form+cgi&btnG=Zoeken&lr=
Love,
Mirna
steve_81
06-07-2005, 10:34 PM
What is the script that will allow the ACTION to send the form information to
a "processing script" that will then send the info to my email inbox?
I already have the code...I ment what do i put in the "action" portion of the html script that i already have to make it work.
Combat Babe
06-07-2005, 10:37 PM
um...I'm not quite sure what you mean...but say you have the php code in "mail.php" in the same directory. then your bit of code would read:
<form name="form1" method="post" action="mail.php">
(I'm not 100% sure, but I'm 95% sure...it's been awhile since I've done contact forms).