Sounds great. Simple enough.
Okay, so the function time(); returns the number of seconds since the 'unix epoch' on January 1st, 1970.
and the function strtotime("May 4th 2005 12:33:24 GMT"); will return the number of seconds since the unix epoch to may 4th 2k5.
Since I have that straight, I am not able to do the following:
$signup = strtotime(date("m.d.Y"));
That returns -1.
How would I have to save the unix_timestamps in my database (i.e: when someone reaches the four referral mark and I record the date, how should I record it to be able to convert it using strtotime later)?
I honestly don't care about accuracy to the second, I want it to be within a day or two...So, what is the simplest way to save it into the database as a date?
Thanks! I really like your approach.
-influx