Hello, i am looking for one scripts which send mail on specified email id on page load. and email must contain information of IP from which visitor visit the page. for example. for this page : fdsfdsfsdfdfdf(dot)com/dfdsffsfs.php when any one visit this page, i should receive mail on specified email id with IP details of visitors. regards
try this^^ <?php $ip = $_SERVER['REMOTE_ADDR']; // Send mail('name@email.com', 'Some Ip', $ip); ?> PHP: