Re: [PHP] Determine the difference between two dates

2002-04-19 Thread Ron Allen
; > > > Danny > > > > - Original Message - > > From: "Ron Allen" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Friday, April 19, 2002 2:56 PM > > Subject: Re: [PHP] Determine the difference between two dates &g

Re: [PHP] Determine the difference between two dates

2002-04-19 Thread Ron Allen
<[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, April 19, 2002 2:56 PM > Subject: Re: [PHP] Determine the difference between two dates > > > > If I wanted to represent it in the format of Days,Hours,Minutes,Seconds > how > > would that work >

Re: [PHP] Determine the difference between two dates

2002-04-19 Thread Danny Shepherd
use the date() command (http://www.php.net/date) - using $timeDiff as the datestamp. HTH Danny - Original Message - From: "Ron Allen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 19, 2002 2:56 PM Subject: Re: [PHP] Determine the difference betw

Re: [PHP] Determine the difference between two dates

2002-04-19 Thread Ron Allen
gt; > Danny. > > ----- Original Message - > From: "Ron Allen" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, April 19, 2002 1:08 PM > Subject: [PHP] Determine the difference between two dates > > > > If I have two variables o

Re: [PHP] Determine the difference between two dates

2002-04-19 Thread Pedro Garre
action to get the difference (in seconds) between times > $timeDiff=$lastTime-$firstTime; > > //echo out the difference > printf ("Difference is %d seconds",$timeDiff); > > ?> > > HTH > > Danny. > > - Original Message ----- > From: "Ron Allen&

Re: [PHP] Determine the difference between two dates

2002-04-19 Thread Danny Shepherd
Firstly, I assume you mean "Y-m-j H:i:s" for the date format. To get the difference between 2 time strings : HTH Danny. - Original Message - From: "Ron Allen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 19, 2002 1:08 PM Subject

[PHP] Determine the difference between two dates

2002-04-19 Thread Ron Allen
If I have two variables of time both in the format of "Y-m-j J:i:s" How would I go about and get the difference? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php