Free Web Hosting Provider - Web Hosting - E-commerce - High Speed Internet - Free Web Page
Search the Web


Click Here To Go Back to The Scripting Home Page

     The following is a complete working example of the advanced Web site visitor (Secured Server Only) hit counter source code.

     You may copy-paste the below contents of this page (beginning with the </html> at the bottom, up to the <html> below the perforated line) into a blank .txt file in your computer. The below example is also a complete HTML page.

     Study this one carefully, making all necessary changes, such as "secured server name," and "e-mail recipient," and "redirect," etc., change the extention from .txt to .html. Then upload the file to your domain's file manager (but only if your secured environment is enabled), then test the page.

------------------------------------------------------------------

<html>
<head>
<title>Copy Paste This Second Code</title>

<Script Language="JavaScript">
<!--
function SendOne()
{
document.EmailMe.submit();
}
-->
</Script>

</head>
<body onload="SendOne()">

<FORM ACTION = "https://ServerName.Server.com / YourDomainName-no-DotCom / cgi-bin / formmail.pl" METHOD = "POST" name = "EmailMe">

<input type = hidden name = "recipient" value = "YourEmailAddress.Com">

<input type = hidden name = "redirect" value = "https://Server.Host.com / YourDomain / IdenticalButTargetedPage.html">

<input type = hidden name = "subject" value = "This was sent to me automatically">

</form>

</body>
</html>