Gossamer Forum
Home : General : Perl Programming :

Unix date

Quote Reply
Unix date
Hello,

I have a form for a subscription and all the datas are stored in a txt file on the server.

I need to have an unique number for each subscription and was thinking of using the UNIX time & date.

Could someone tell me how to do it?

Thanks a lot
Quote Reply
Re: [Lotz] Unix date In reply to
my $time = time;
Post deleted by Lotz In reply to
Quote Reply
Re: [Paul] Unix date In reply to
Paul,

Thanks a lot for your help.