Script & Programming
How do I set up FormMail?
To get the FormMail script working, you should use the following piece of code (which is only an example - you should therefore make corrections in the different fields):<FORM method="post" action="http://www.your-domain.dk/cgi-bin/FormMail.pl">
<input type="hidden" name="recipient" value="your@emailaddress.dk">
<input type="hidden" name="subject" value="You can write in here the subject text">
<input type="hidden" name="redirect" value="http://www.domain.dk/newpage.html">
</FORM>
How do I create a sub-domain?
To set up a sub-domain, you should add a directory to the root for your web hotel. There should be an index file in the directory. To view your sub-domains in the browser, you can choose between the following two options:http://www.yourdomain.dk/subdomain
http://subdomain.yourdomain.dk
UNIX PATH
/customers/yourdomain/yourdomain/httpd.www/How do I redirect my users to a different domain/site?
You can forward your page to a different page by inserting the following piece of code in your <head> </head> tag:<meta http-equiv="refresh" content="0; url=http://www.domain.dk/">
content specifies how many seconds will elapse before you are forwarded to the other page.

