date question
Posted: Thu Mar 08, 2007 10:38 am
how to get current date in this formate:
1173253464
and how to add 7 or 10 days in it.
thank you
1173253464
and how to add 7 or 10 days in it.
thank you
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
echo strtotime('today'), "<br />\n";
echo strtotime('today + 7 days'), "<br />\n";