well anyone? php or cgi?!
Remove Script for Mailers!!! Anyone has it??
Collapse
X
-
We have it for all our mailers
If interested, contact me by icq:4705290SIG TOO BIG! Maximum 120x60 button and no more than 3 text lines of DEFAULT SIZE and COLOR. Unless your sig is for a GFY top banner sponsor, then you may use a 624x80 instead of a 120x60. -
PHP Code:<? $file = "remove.txt"; $log = "log.txt"; $email = $_POST['email']; $ip = $_SERVER['REMOTE_ADDR']; $date = date("h:i d-F-Y", time()); if($_POST['email'] && $_POST['Submit']){ $fp = fopen($file, 'a'); if(!$fp){ echo "Can not open file $file"; }else{ fputs($fp, "$email\n"); print ("You email has been removed from our mailling list, thank you for your time.<BR>"); } fclose($fp); $fp = fopen($log, 'a'); if(!$fp){ echo "Can not open file $log"; }else{ fputs($fp, "$ip\t$email\t$date\n"); } fclose($fp); } ?>Comment
-

Comment