how to find server current datetime while uploading the file and downloading the file using php and mysql
views:
25answers:
2
A:
You might be interested in the php functions time() and date():
Roberto Aloi
2009-10-22 09:18:27
A:
Try these: In PHP:
$t = time();
$d = date();
In Mysql:
now()
select now()
jerjer
2009-10-22 09:28:47