You cannot do this in HTML.
At a stretch, you could do it in a server-side language such as PHP, though this would be clumsy and far from perfect. The only real solution is to install some decent mailing-list software on your server, such as mailman.
Also, you seem to have some quotation problems.
HTML Code:
<form action="http://www.criterion.pwp.blueyonder.co.uk/cgi-bin/FormMail.pl method="post>
should be
HTML Code:
<form action="http://www.criterion.pwp.blueyonder.co.uk/cgi-bin/FormMail.pl" method="post">
and
HTML Code:
<input type="hidden" value="http://www.criterion.pwp.blueyonder.co.uk/redirectpage.html name="redirect>
should be
HTML Code:
<input type="hidden" value="http://www.criterion.pwp.blueyonder.co.uk/redirectpage.html" name="redirect">
Bookmarks