html - Submission forms -


Is it right to add submissions forms to your site?

I need it to create a form that allows the user to enter their email, and once they have entered it - show them a site that gives you a thank you and we Stay in touch.

Do I need specific software or just to store server space?

This is a common goal of scripting or language. This requires some type of script on a hosting server such as PHP, Perl or ASP.NET.

Create the form in HTML, and then set the action to POST data for the script.

  & lt; Form method = "POST" action = "http: //www.mysite/myScript.php" & gt;   

This script will have the necessary language to act on the information (name, email, etc.) in the file, take some sort of action (say, email to data to third parties) and Then the user is displaying the thank you page.

Comments