vote up 1 vote down star

Let me know :)

$add_date = date ("Y-m-d H:m:s"); 
$expiry_date = 'how?';

How to insert into db the $expiry_date for 60 days. mysql format is datetime

flag

2  
Was this voted down just because it's a simple question? Let's be a little forgiving, people :) – Dave Swersky Nov 3 at 18:25

2 Answers

vote up 9 vote down check

Use strtotime():

$start_date = date('Y-m-d H:m:s');
$end_date = date('Y-m-d H:m:s', strtotime("+60 days"));

or more simply:

$end_date = date('Y-m-d H:m:s', time() + 86400 * 60);
link|flag
thanks mate.. I was try to get it done over 2 hours. – bob Nov 3 at 18:25
vote up 1 vote down

A method avoiding time conversions:

$time = date('Y-m-d H:m:s', time()+3600*24*60)

EDIT
However, it may be less readable and the time saved is probably irrelevant. Plus cletus just edited a similar method into his answer

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.