Alain Dhaene wrote:
I retrieve a date from the mysql database.
e.g 2004/12/02
How is it possible to make this day with 1 day higher : so I get 2004/12/03?
If the dates are in datetime format you can manipulate them in all sorts
of ways. PHP is pretty flexible in date interpretation too. e.g
$today="2004/12/02";
$tomorrow = date("Y:m:d",strtotime("+1 day",strtotime($today)));
Hope that helps,
Kelv
--
LoHost
http://www.lohost.com