Option 1: Create a secure
link to your form or page using the URL for a secure sever address
(https://).
If you are using the Domainz shared
SSL digital certificate, the secure link to your form will look like
this:
https://servernumber.groupname/userid/testform.html
Where:
servernumber = your account server number
groupname = your account group name
userid = your User ID
If you upgrade or downgrade your account and a server change is
required, you will need to update secure URL links to reflect the
new server number. For more information about determining your group
name and server number, go to
How do I find out what my group name and server number are?
If you have your own digital
certificate, the secure link to your form will begin with
https://www. followed by your domain name, followed by the name of
your form. For example:
https://www.forexample-domain.com/testform.html
Where:
forexample-domain.com = your
domain name
Option 2: Create a form that
calls a cgi script that is referenced securely. To do this, ensure
the ACTION portion of the form tag is a secure sever address. For
example, code for a secure form that calls a cgi script on a UNIX
server, and uses the Domainz shared certificate will look like:
<HTML>
<BODY>
<FORM method="POST" ACTION="https://servernumber.groupname/userid/
cgi-local/testform.cgi" Name: <INPUT TYPE="text" name="username">
<BR>
<INPUT TYPE="submit">
</FORM>
</BODY>
</HTML>
If you have a Windows account, the path for your cgi scripts will be
cgi-bin.
If you have
your own digital certificate, the ACTION portion of the form tag
will look like:
<FORM
method="POST"
ACTION="https://www.forexample-domain.com/cgi-local/testform.cgi"
When you create cgi scripts in Perl, Domainz recommends using the
Perl Script Checker tool in your account Control Panel to ensure it
operates as intended. For more information, go to
How do I use the Perl Script Checker tool? To learn more about
creating cgi scripts with Perl, go to
CGI Resources & Information.