[PHP] date expressions

2002-04-02 Thread ROBERT MCPEAK
How do I compare a date (2002-05-01) against a date plus 5 days? I need help figuring out how to do math operations on dates, etc. Could somebody fill this newbie in? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] date expressions

2002-04-02 Thread James E. Hicks III
Convert it to timestamp and then compare or if the date's in a mysql database let mysql handle the comparison for you. James -Original Message- From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 8:25 AM To: [EMAIL PROTECTED] Subject: [PHP] date expressions

RE: [PHP] date expressions

2002-04-02 Thread Rick Emery
To: [EMAIL PROTECTED] Subject: [PHP] date expressions How do I compare a date (2002-05-01) against a date plus 5 days? I need help figuring out how to do math operations on dates, etc. Could somebody fill this newbie in? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP] date expressions

2002-04-02 Thread Rick Emery
expressions Convert it to timestamp and then compare or if the date's in a mysql database let mysql handle the comparison for you. James -Original Message- From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 8:25 AM To: [EMAIL PROTECTED] Subject: [PHP] date expressions

Re: [PHP] date expressions

2002-04-02 Thread Erik Price
On Tuesday, April 2, 2002, at 08:25 AM, ROBERT MCPEAK wrote: How do I compare a date (2002-05-01) against a date plus 5 days? I need help figuring out how to do math operations on dates, etc. Could somebody fill this newbie in? There was a recent tutorial on DevShed introducing date