
February 28th, 2003
12:49 PM
Mail form in HTML
how can i make a mail form in html ?
with a field name
mail
subject
message
Then two buttons send and reset
how can i do this in html ?
___________________
Signature Suspended as it is in violation with the signature rules

February 28th, 2003
02:48 PM
Neverside Newbie
Status: Offline!
<form method="POST" action="form.php">
Name: <br>
<input type="text" name="name" size="20">
<br>Email:<br>
<input type="text" name="email" size="20">
<br>Subject<br>
<input type="text" name="subject" size="20">
<br>Message:<br>
<textarea rows="2" name="S1" cols="20"></textarea></p>
<p><input type="submit" value="Submit" name="submit">
<input type="reset" value="Reset" name="reset"></p>
</form>
that should help;)
___________________
LIFE¬ SUCKS
Last edited by kisore, February 28th, 2003 02:57 PM (Edited 1 times)

March 1st, 2003
01:25 PM
version 1.0 since 1979
Status: Offline!
yeah but it wont work without form.php! peli fixx do you have a php server?
___________________
RenderBlender

March 1st, 2003
09:26 PM
::classic:
___________________
Signature Suspended as it is in violation with the signature rules

March 2nd, 2003
01:53 AM
version 1.0 since 1979
Status: Offline!
your sigs not going to last long...read the rules if i was you;
___________________
RenderBlender

March 2nd, 2003
03:08 AM
Neverside Newbie
Status: Offline!
you don't have a php server?
if you don't, i can host it;)
___________________
LIFE¬ SUCKS

March 2nd, 2003
04:06 AM
TF Retiree
Status: Offline!
Can't it be like <form action="mail"> or something?

March 2nd, 2003
06:48 PM
version 1.0 since 1979
Status: Offline!
Originally posted by DanX
Can't it be like <form action="mail"> or something?
not really, it sets the file that process the form; this is generally a server side script like php, asp, jsp, etc. or a cgi script. you could have mail.php though.
___________________
RenderBlender

March 2nd, 2003
10:49 PM
Neverside Newbie
Status: Offline!
if u put <form action="you@yoursite.com">
it will pop up Outlook Express or whatever program is your default email program;)
___________________
LIFE¬ SUCKS

March 3rd, 2003
09:06 AM
version 1.0 since 1979
Status: Offline!
then you may as well use the mailto:you@yours.com
___________________
RenderBlender