Hi people,
got a question for time functions
I have a table where i need to store a time value which can be retrieved through PHP $time = time(......);
my question is how should I store it in mysql if i want to retrieve information later like:
select * from theTable where time "between november 15th 2001 and december 15th 2001" (i wasnt sure of the syntax so i wrote out in english).
If i store this as a varchar it would be hard to do queries like this on the mysql variable. anybody got any suggestions?