On Tue, 12 Mar 2002, Balaji Ankem wrote: > Hi Jan, > I want to compare the DTAETIME1,DATETIME2 which are from mysql > table and want to compare in PHP. > But strtotime takes only one argument and it checks whether it > is valid or not.
True, after you've fetched a record with, e.g. $row = mysql_fetch_row($result) use if (strtotime($row["DATETIME1"]) < strtotime($row["DATETIME2"])) { ... } or whatever you desire... > > Balaji > > -----Original Message----- > From: Jan Rademaker [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 12, 2002 6:40 PM > To: Balaji Ankem > Cc: Php-General > Subject: Re: [PHP] Hi How to compare two dates using PHP which are from > mysql database? > > > On Tue, 12 Mar 2002, Balaji Ankem wrote: > > http://www.php.net/manual/en/function.strtotime.php > > you can compare the results with > < =, etc... > > > Hi, > > I would like to compare the two dates (including time stamp) > using > > php. > > Is it possible? > > > > Any help would be apprciable. > > > > Thanks in advance > > Balaji > > > > > > -- Jan Rademaker <[EMAIL PROTECTED]> http://www.ottobak.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php