ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Need help writing a script? Have any question about ScriptFTP?
How would I go about getting the month, day and year numbers? So if it's December 09, 2009, I need 3 variables that would contain:
Code: Select all$month=12 $day=09 $year=2009
It is very easy:
Code: Select all$year=GETTIME(YEAR) $month=GETTIME(MONTH) $day=GETTIME(DAY)