Re: [PHP] incrementing a date!

2001-02-25 Thread Philip Olson
> ex: 2001-03-28 'll become 2001-04-01 Here's an example (a hack) which may help you get going : print getFutureDate('2001-03-28',4); // 2001-04-01 function getFutureDate($date,$days,$format='Y-m-d') { list($year,$month,$day) = explode('-', $date); $timestamp = mktime(0,0,0, $mo

Re: [PHP] incrementing a date!

2001-02-25 Thread Web Admin
AIL PROTECTED] Sent: Sunday, February 25, 2001 2:36 PM Subject: [PHP] incrementing a date! Hi all! s there a way with which we can increment a date (by day) without extracting the month the day and the year then increment some of them depending on the day the month and the year ?

[PHP] incrementing a date!

2001-02-25 Thread kaab kaoutar
Hi all! s there a way with which we can increment a date (by day) without extracting the month the day and the year then increment some of them depending on the day the month and the year ? ex: 2001-03-28 'll become 2001-04-01 Thanks _