How do I do this? I've tried mktime() and getdate() but it's not
working.
Thanks!!
If you want to do it with mysql (i.e. insert the current time) use NOW()
(the mysql function) for example INSERT INTO foo (date) VALUES (NOW())
INSERT INTO table VALUES (NOW()),'John');
---John Holmes...