more webpage help

anyone familiar on how to make a submit form? I can make a one line text box, and a submit button, but i'm missing a key element...
i need that info emailed to me. screw that CGI bin crap. and yes, i know you can make one easily on frontpage, but its being rather gay.
on the plus side, I got listed on yahoo. still no love from yahoo though, and my page ranking really sucks. meh.
Who makes frontpage?...MS? I believe that is why it is being rather gay :chuckles:
Dreamweaver :rockon:
sorry i couldn't help... but Dreamweaver does have that function too if you did use it
h:
Dreamweaver :rockon:
sorry i couldn't help... but Dreamweaver does have that function too if you did use it
h:
__________________
[ASIANDOOOD.COM] [INSPIRE USA] [FACEBOOK] [ENDLESS 8]
F/S: JDM EG9 Parts - PM me for info
[ASIANDOOOD.COM] [INSPIRE USA] [FACEBOOK] [ENDLESS 8]
F/S: JDM EG9 Parts - PM me for info
Originally Posted by asiandoood
Who makes frontpage?...MS? I believe that is why it is being rather gay :chuckles:
Dreamweaver :rockon:
sorry i couldn't help... but Dreamweaver does have that function too if you did use it
h:
Dreamweaver :rockon:
sorry i couldn't help... but Dreamweaver does have that function too if you did use it
h:thats why I'm using frontpage. i'm enjoying toggling between HTM and "normal" modes.
grifter i'll check it out, thanks.
Originally Posted by Darth Grifter
http://www.htmlhelp.com/reference/wi...lock/form.html
lemme know if this doesnt help
lemme know if this doesnt help
oh and if anyone's interested, i just found a few copies of the third edition o'reilly book on javascript for only 9.95 in my backroom. :rick: i'm getting a copy.
Originally Posted by HAN Frodo
free>paying for something.
.
.
werd :rick:
dreamweaver has that function too
__________________
[ASIANDOOOD.COM] [INSPIRE USA] [FACEBOOK] [ENDLESS 8]
F/S: JDM EG9 Parts - PM me for info
[ASIANDOOOD.COM] [INSPIRE USA] [FACEBOOK] [ENDLESS 8]
F/S: JDM EG9 Parts - PM me for info
You can do it a simple way, like:
<html>
<head>
<title>Template</title>
</head>
<FORM METHOD="POST" ACTION="mailto:mmerson@gmail.com">
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA><br>
<INPUT TYPE="submit">
<INPUT TYPE="reset">
</form>
</html>
But this would open your primary email server's website and try to log in.. it wouldn't actually email it by itself.
<html>
<head>
<title>Template</title>
</head>
<FORM METHOD="POST" ACTION="mailto:mmerson@gmail.com">
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA><br>
<INPUT TYPE="submit">
<INPUT TYPE="reset">
</form>
</html>
But this would open your primary email server's website and try to log in.. it wouldn't actually email it by itself.
Originally Posted by Darth Grifter
i believe its
<FORM ACTION="jess@email.com" METHOD=POST>
<FORM ACTION="jess@email.com" METHOD=POST>
Originally Posted by MPerson
You can do it a simple way, like:
<html>
<head>
<title>Template</title>
</head>
<FORM METHOD="POST" ACTION="mailto:mmerson@gmail.com">
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA><br>
<INPUT TYPE="submit">
<INPUT TYPE="reset">
</form>
</html>
But this would open your primary email server's website and try to log in.. it wouldn't actually email it by itself.
<html>
<head>
<title>Template</title>
</head>
<FORM METHOD="POST" ACTION="mailto:mmerson@gmail.com">
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA><br>
<INPUT TYPE="submit">
<INPUT TYPE="reset">
</form>
</html>
But this would open your primary email server's website and try to log in.. it wouldn't actually email it by itself.


