Reputation: 4927
I'm using strtotime("next week") to get the next week's timestamp. now i need to get the timestamp of 'next week' of 'next week', i.e. 2 weeks later.
strtotime("next week")
can anybody plz help...
-venkat nehatha
Upvotes: 2
Views: 1819
Reputation: 26441
Try this:
'Next 2 Week: '.strtotime('+2 week');
Upvotes: 5
I found strtotime("+2 week")
strtotime("+2 week")
Upvotes: 1