Date Stamp on Unsubscribes

lithoart

Member
I am using the unsubscribe PHP downloaded from the site.

It lists the people who clicked on the unsubscribe link and neatly puts it in a list viewed on a browser.

Is it possible to have a time stamp (or column) when the entry was logged?

If it can, it'll be awesome.

Thanks!
 

lithoart

Member
Sorry, Stan.
I'm completely in the dark here.

I don't have a clue at all how and where to use this.

Can you help?

I use the MLM PHP scripts from your website.
 

lithoart

Member
At this stage, I don't really mind. As long as I can get some sort of time stamp on it.

Would appreciate any help.
 

stanbusk

Administrator
Staff member
Well you will have to choose a format. ONce you have done you just need to set the date into a variable this way:

$myDate = date(DATE_FORMAT_HERE)

and then replace:

fputs($handle, $newemail);

with

fputs( $handle, $newemail . "\t" . $myDate );

The script will no longer do duplicate checking but I don't think it is too important.
 
Top