Want to know where you are getting all these members and form submissions from? Add in the info you are emailed, some environmental vars like this:
If your site is php, skip this setp;
If your page is html or htm, add
AddHandler server-parsed .htm .html
to your .htaccess file.
in WS_FTP type -a in the little box on the right and hit enter to see hidden files that begin with .
If your page is php,
or, if you are now parsing htm as php, read on:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$fullhost = gethostbyaddr($ip);
$referer = $HTTP_REFERER;
?>
<form name="user_data_display_privacy_policy" action="/cgi-bin/perlscript.pl" method="POST" language="JavaScript">
<input type="hidden" name="ip" value="<?php echo $ip; ?>">
<input type="hidden" name="fullhost" value="<?php echo $fullhost; ?>">
<input type="hidden" name="referer" value="<?php echo $referer; ?>">
<input type="hidden" name="recipient" value="
[email protected]">
<input type="hidden" name="redirect" value="http://www.yourdomainormine.com/thank_you.php">
<input type="hidden" name="subject" value="Courtesy, Free-Templates.com">
<input type="hidden" name="print_blank_fields" value="1">
<input type="hidden" name="sort" value="order:ip,fullhost,referer,submit">
<input name="submit" type="submit" style="color:
#1C5185; border: 1px solid
#c0e9ab" value="Click Here To Submit Request">
</form>