Need a contact form

trina

Chieftain
Joined
Jul 24, 2007
Messages
2
Hello,

I need a contact form on my website, that will send to my email address what the visitor enter in the form fields. The problem is that I can't run any php scripts.. is there a way to use some html form?
:D
 
I beleive its possible, I had an old website [about 4-5 years old] that dealt with it. From what I remember it simply stored the information as a link

{server}/ Contact.html?Name=trina?email=something@CFC.com?Details=Stuff

it got complicated. Anyway, all you do is this
HTML:
 <Form method=Post Action=mailto:YourEmail@Something>

Any reason you can't use php? becuase the above is very messy and [I don't think] can be automated.
 
HTML:
<html>
<form method="post" action="mailto:youremail@provider.domain">
Name:<input type="text" name="contactorsname"></br>
Message: <input type="textarea" name="message" cols="40" rows="5"></textarea></br>
<input type="submit" name="submit" value="Click here to submit">
</form>
</html>
 
Thank you for your suggestions! I found a site that offers remotely hosted contact forms, www.emailmeform.com . Basically, I paste the html code in my website, and it calls the php script on their server who sends the email.:cool:
 
Back
Top Bottom