Re: [PHP] DateTime wierdness

2012-03-29 Thread tamouse mailing lists
2012/3/29 Martín Marqués : > El día 29 de marzo de 2012 14:14, David OBrien escribió: >> actually this would work well ... compare what they send with the output of >> the formatdate >> >> function checkDateTime($data) { >>     if (date('Y-m-d H:i:s', strtotime($data)) == $data) { >>         retur

Re: [PHP] DateTime wierdness

2012-03-29 Thread Martín Marqués
El día 29 de marzo de 2012 14:14, David OBrien escribió: > actually this would work well ... compare what they send with the output of > the formatdate > > function checkDateTime($data) { >     if (date('Y-m-d H:i:s', strtotime($data)) == $data) { >         return true; >     } else { >         re

Re: [PHP] DateTime wierdness

2012-03-29 Thread David OBrien
actually this would work well ... compare what they send with the output of the formatdate function checkDateTime($data) { if (date('Y-m-d H:i:s', strtotime($data)) == $data) { return true; } else { return false; } } 2012/3/29 David OBrien > http://www.php.net/manual

Re: [PHP] DateTime wierdness

2012-03-29 Thread David OBrien
http://www.php.net/manual/en/function.checkdate.php 2012/3/29 Martín Marqués > OK. So what would be a good way to validate a date? > > El día 29 de marzo de 2012 14:04, David OBrien > escribió: > > > > echo date("m-d-y",mktime(0, 0, 0, 14, 14, 2012)); > > > > this outputs "02-14-13" also so my

Re: [PHP] DateTime wierdness

2012-03-29 Thread Martín Marqués
OK. So what would be a good way to validate a date? El día 29 de marzo de 2012 14:04, David OBrien escribió: > > echo date("m-d-y",mktime(0, 0, 0, 14, 14, 2012)); > > this outputs "02-14-13" also so my guess is that it is being interpreted the > same as  "12/14/2012 +2 months" > > echo date("m-d-

Re: [PHP] DateTime wierdness

2012-03-29 Thread David OBrien
echo date("m-d-y",mktime(0, 0, 0, 14, 14, 2012)); this outputs "02-14-13" also so my guess is that it is being interpreted the same as "12/14/2012 +2 months" echo date("m-d-y",mktime(0, 0, 0, 1, 45, 2012)); outputs "02-14-12" which is 1/1/12 +45 days 2012/3/29 Martín Marqués > Can someone

Re: [PHP] DateTime using DateTimeZone Timestamp problem

2011-04-05 Thread Richard Quadling
On 4 April 2011 16:35, Ian wrote: > Hi, > > I have a problem using the php built in classes DateTime and DateTimeZone. > > The idea behind the following code is to return the timestamp for the > current time in Singapore (or other places).  What it actually returns > is the timestamp for the local

Re: [PHP] DateTime using DateTimeZone Timestamp problem

2011-04-05 Thread Simon J Welsh
On 5/04/2011, at 3:35 AM, Ian wrote: > Hi, > > I have a problem using the php built in classes DateTime and DateTimeZone. > > The idea behind the following code is to return the timestamp for the > current time in Singapore (or other places). What it actually returns > is the timestamp for the

Re: [PHP] DateTime using DateTimeZone Timestamp problem

2011-04-04 Thread Ashley Sheridan
On Mon, 2011-04-04 at 16:35 +0100, Ian wrote: > Hi, > > I have a problem using the php built in classes DateTime and DateTimeZone. > > The idea behind the following code is to return the timestamp for the > current time in Singapore (or other places). What it actually returns > is the timestamp

Re: [PHP] DateTime... What else ?

2008-04-17 Thread David BERCOT
Le Thu, 17 Apr 2008 10:19:10 +0100, Stut <[EMAIL PROTECTED]> a écrit : > On 17 Apr 2008, at 10:05, David BERCOT wrote: > > I've got a problem with DateTime. I have a short code which gives an > > error : > > > > > > $date = new DateTime(date("d/m/Y")); > > $date->modify("-1 month"); > > $mois_en_c

Re: [PHP] DateTime... What else ?

2008-04-17 Thread David BERCOT
Hi again, Le Thu, 17 Apr 2008 21:10:44 +1200, Simon Welsh <[EMAIL PROTECTED]> a écrit : > On 17/04/2008, at 9:05, David BERCOT wrote: > > Hi, > > > > I've got a problem with DateTime. I have a short code which gives an > > error : > > > > > > $date = new DateTime(date("d/m/Y")); > > $date->modify

Re: [PHP] DateTime... What else ?

2008-04-17 Thread Stut
On 17 Apr 2008, at 10:05, David BERCOT wrote: I've got a problem with DateTime. I have a short code which gives an error : $date = new DateTime(date("d/m/Y")); $date->modify("-1 month"); $mois_en_cours1 = $date->format("Y-m"); $date->modify("-1 month"); $mois_en_cours2 = $date->format("Y-m"); $

Re: [PHP] DateTime... What else ?

2008-04-17 Thread Simon Welsh
On 17/04/2008, at 9:05, David BERCOT wrote: Hi, I've got a problem with DateTime. I have a short code which gives an error : $date = new DateTime(date("d/m/Y")); $date->modify("-1 month"); $mois_en_cours1 = $date->format("Y-m"); $date->modify("-1 month"); $mois_en_cours2 = $date->format("Y-m"

Re: [PHP] DATETIME or UNIX TIMESTAMPS?

2006-10-26 Thread Larry Garfield
On Thursday 26 October 2006 15:36, Marcelo de Moraes Serpa wrote: > Hello list, > > I've always used Unix Timestamps until now, but lately I've reading about > MySQL's datetime datatype and its benefits (dates before 1970, after 2030, > SQL functions to deal with them, etc). However, I don't see mu

Re: [PHP] datetime formatting problem

2004-05-28 Thread Stephen Lake
like a charm and i'm off to read up some more on strtotime. best, m. -Original Message- From: Torsten Roehr [mailto:[EMAIL PROTECTED] Sent: Friday, May 28, 2004 2:07 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] datetime formatting problem "Daniel Clark" <[EMAIL PROTEC

RE: [PHP] datetime formatting problem

2004-05-28 Thread Matt Newell
appreciate the headsup, but all times will be from when record is inserted which will not be possible before today. thanks, m. -Original Message- From: Jordan S. Jones [mailto:[EMAIL PROTECTED] Sent: Friday, May 28, 2004 2:20 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] datetime

RE: [PHP] datetime formatting problem

2004-05-28 Thread Matt Newell
thanks a bunch torsten. it worked like a charm and i'm off to read up some more on strtotime. best, m. -Original Message- From: Torsten Roehr [mailto:[EMAIL PROTECTED] Sent: Friday, May 28, 2004 2:07 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] datetime formatting problem "Da

Re: [PHP] datetime formatting problem

2004-05-28 Thread Jordan S. Jones
[snip /] Hi Matt, try this: function formatDate($val) { $timestamp = strtotime($val); return date('M d, Y g:i A', $timestamp); } strtotime possibly will not work if your date is < 01/01/1970. [snip /] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.n

Re: [PHP] datetime formatting problem

2004-05-28 Thread Torsten Roehr
"Daniel Clark" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Isn't "date" a reserved word? date and dateTime are not reserved in MySQL and can be used as column names. > > > hi all - > > > > this is probably straight forward, but i'm learning and would appreciate > > any insight.

Re: [PHP] datetime formatting problem

2004-05-28 Thread Daniel Clark
Isn't "date" a reserved word? > hi all - > > this is probably straight forward, but i'm learning and would appreciate > any insight. > > i'm using the datetime type in mysql and have been able to successsfully > pull the data records's date, but it's failing out and giving me the > current time [a

Re: [PHP] datetime control

2004-02-09 Thread Tom Rogers
Hi, Monday, February 9, 2004, 10:42:24 PM, you wrote: AZ> is there a date picker object or control that i can use on an HTML page, AZ> instead of making lots of dropdown lists for the various date fields? AZ> thanx in advance AZ> angelo AZ> ---

Re: [PHP] datetime

2003-08-22 Thread Marek Kilimajer
Best and fastest way is to let mysql format the date, look into mysql manual for DATE_FORMAT() function. Dale Hersh wrote: I am using a mssql database and I have a question regarding the datetime type. When I write a date to the database it store the date in the following format: 6/8/03 But when

RE: [PHP] datetime

2003-08-21 Thread Cody Phanekham
Convert "Jun 8 2003 12:00AM" to a timestamp which can then be used with the date() function to format the date to whatever format you want. Lets say you've inserted the date as '6/8/03' and you want the data to remain the same when you retrieve it: so all you have to do is replace "Jun 8 2003

Re: [PHP] datetime

2003-08-21 Thread Larry_Li
Use date() and strtotime() together. strtotime will convert date string into integer timestamp. Still have any questions, check these two functions online plz. "Dale Hersh" <[EMAIL PROTECTED]> 08/22/2003 10:13 AM To: [EMAIL PROTECTED] cc: Subject:[PH

Re: [PHP] datetime

2003-04-03 Thread Sara Golemon
'g' is 12-hour format, 'H' is 24 hour (with leading 0) date("Y-m-d H:i:s",$date); "Sebastian" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > $date = date("Y-m-d g:i:s", $date); > echo $date; > > cheers, > - Sebastian > > -Original Message- > From: Tim Haskins [mailto:[EMA

Re: [PHP] datetime

2003-04-03 Thread Sebastian
$date = date("Y-m-d g:i:s", $date); echo $date; cheers, - Sebastian -Original Message- From: Tim Haskins [mailto:[EMAIL PROTECTED] > How does one retrieve the date and time off a server in the following > format? > > 2003-04-03 11:11:38 -- PHP General Mailing List (http://www.php.

RE: [PHP] datetime

2003-04-03 Thread Matt Schroebel
> -Original Message- > From: Tim Haskins [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 03, 2003 2:45 PM > To: [EMAIL PROTECTED] > Subject: [PHP] datetime > > > How does one retrieve the date and time off a server in the following > format? > > 2003-04-03 11:11:38 Plenty of example

Re: [PHP] datetime field - still a newbie

2002-07-25 Thread Alexander Ross
Thanks bunches "John Holmes" <[EMAIL PROTECTED]> wrote in message 001101c233ba$3de3d430$b402a8c0@mango">news:001101c233ba$3de3d430$b402a8c0@mango... > > I have a datetime field in one of my mysql tables...when displaying > some > > of > > my records I want to display the date in the aforemention

RE: [PHP] datetime field - still a newbie

2002-07-25 Thread John Holmes
> I have a datetime field in one of my mysql tables...when displaying some > of > my records I want to display the date in the aforementioned datetime > field, > but if the date is today I want to display "today" instead. If the date > is > yesterday I want it to display that so I how do I c

RE: [PHP] datetime field - still a newbie

2002-07-24 Thread David Freeman
> I have a datetime field in one of my mysql tables...when > displaying some of > my records I want to display the date in the aforementioned > datetime field, > but if the date is today I want to display "today" instead. > If the date is > yesterday I want it to display that so I