Hi All,
I have some data about client information and I want to know the expiration date of client before 15 days. But I have no idea for that. I want to know the client name before 15 days of expiration. (ONLY CONCERNED WITH DATE).
sKc
How do you store the experation date?
Do something like:
$expire = time()+15*24*60*60; $query = "select * from TABLE where UNIX_TIMESTAMP(exp_date) < $expire";