Hello,
The below is the code i have i want to track down the ipaddress of the people who ever subscribed to my list. I am beginner in php kindly do the needful. Thanks a lot in advance.
<!-- Subscribe form -->
<form action="subscribe/NLprocess.php" method="post">
<h6 class=footer-widget-heading>Enter your email:</h6>
<div class="input">
<input type="text" class="button" name="email" placeholder="Email address">
<input type="submit" class="button" id="submit" value="Subscribe">
</div>
</form>
<!-- End subscribe form -->
The processing file NLprocess.php ----
$emailmanager = '
[email protected]';
// SECOND:
// save this file, and close it. Thank you!
error_reporting(0);
$email = trim($_POST['email']);
$Ok = ereg("^([a-zA-Z0-9_\.-]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$", $email);
if ($Ok) {
mail($emailmanager,'Subscribe','','From: '.$email);
if(!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$",$UNameFrm))
{
?>
<script language = 'javascript'>
alert('Thank you, Now you Subcribed to smallstamps.com Updates');
history.go(-1);
</script>
<?
exit();
}
}
else {
if(!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$",$UNameFrm))
{
?>
<script language = 'javascript'>
alert('Sorry, please provide a valid Email address.');
history.go(-1);
</script>
<?
exit();
}
}
?>
Kindly let me know what i have to do to track the ip address.