I’m on hostmonster but I don’t know the form action link I need for the form. "<form name="reg" action=??? method="post">
Also, I can’t link the for using a <a href> tag. I don’t know what I’m doing, because I’m pretty knew at this. I don’t know if my question is clear enough, but I would really appreciate some help. I want the users to like to my contact form once they hit the "contact me" link, but it’s not working.
RSS Feed
July 29th, 2010
admin
Posted in
Tags:
Well the form question is hard to answer without knowing how the form is being processed. If your using a free form it should have instructions. Here is a free automated form maker: http://www.phpform.org/. You’ll need a ftp program to upload this to your website.
To make HTML links:
a normal link:
<a href="http://www.apple.com">www.apple.com</a>
a email link:
<a href="mailto:name@apple.com">Contact Us</a>
a link that opens in a new window:
<a href="http://www.apple.com" target="_blank">www.apple.com</a>
Hope this helps.