thededicatedpartnership.com
Web design, internet promotion, leaflet design and leaflet distributionBack to the front pageContact The Dedicated Partnership

About Us
Partners
Clients' Comments
Media Coverage
Contact Us

Domains and Hosting
Look Up Your Domain
Hosting Packages
Online Support Desk

Web Site Design
Web Design Portfolio
Panoramic Images
Flash Animation
Programming

Internet Promotion
META tags and More
Link Popularity
Manual Promotion

Search Engines
@UK Travel Guide
AardvarkTravel.net
AardvarkTracking.net
UKseries.com
Fun Stuff
 

Web Site Forms
Adding a form to your Web site


Our form script sends the contents of a Web form page to an email address. You add HTML tags to the form page to pass the information the script requires.

<form action="/cgi-bin/sendform" method="post">

You must specify the email address to send the form to:
<input type="hidden" name="to" value="you@you.co.uk">

If you are asking the user for their email address in your form, you can call the text field "from" and the email will appear to come from that address, allowing you to use the "Reply to" feature of your email software.
<input type="text" name="from">

Returned Pages

You can specify the page that is viewed after the form is submitted:
<input type="hidden" name="page" value="/thanks.html">


Mandatory Fields