LavaEagle
20-10-2008, 01:02 PM
I have some simple Blah:
<html>
<body>
<form name="type" action="">
First Name:
<input type="text" name="firstname">
Last Name:
<input type="text" name="lastname">
What kind computer user do you consider yourself?
Casual User
<input type="checkbox" name="cas" value="Casual User">
Developer
<input type="checkbox" name="dev" value="Developer">
Gamer
<input type="checkbox" name="gam" value="Gamer">
Business
<input type="checkbox" name="bus" value="Business">
Enthusiast
<input type="checkbox" name="ent" value="Enthusiast">
<input type="submit" value="Submit">
</form
What I need from this blah is the PHP that automatically sends an email to my email when they click submit without having to login to their email and all that crap. I was thinking if I could make the website somehow send it so when i get the email with the email it has the websites ip address or I could just make an email for it to use. Not really sure what to do here.
<html>
<body>
<form name="type" action="">
First Name:
<input type="text" name="firstname">
Last Name:
<input type="text" name="lastname">
What kind computer user do you consider yourself?
Casual User
<input type="checkbox" name="cas" value="Casual User">
Developer
<input type="checkbox" name="dev" value="Developer">
Gamer
<input type="checkbox" name="gam" value="Gamer">
Business
<input type="checkbox" name="bus" value="Business">
Enthusiast
<input type="checkbox" name="ent" value="Enthusiast">
<input type="submit" value="Submit">
</form
What I need from this blah is the PHP that automatically sends an email to my email when they click submit without having to login to their email and all that crap. I was thinking if I could make the website somehow send it so when i get the email with the email it has the websites ip address or I could just make an email for it to use. Not really sure what to do here.