notes: lastLoginDate defined as a timestamp(14) column
for example: i will store a date in there such as 20040528051725 (which is what the date/time was at that moment)
when i pull it back with
SELECT UNIX_TIMESTAMP(lastLoginDate ) FROM <table name> WHERE idNumber="whatever my number is"
it comes back with 1085746645
but if i do a mktime() and echo that I see that right now it is:
1085790247
the difference of the two times is 43602 which is 12+ hrs
it should be well under 10 minutes if even that
i've read multiple threads on time/date issues (as well as dev.mysql.com/php forums/mysql forums) and I feel, now, that asking this question is valid and not me being lazy
thanks!