RT wrote:[color=blue][color=green]
>> This message is in MIME format. Since your mail reader does not understand[/color]
> this format, some or all of this message may not be legible.[/color]
Please don't MIME us.
[color=blue]
> Iım trying to format a timestamp from my MySQL table (sessions)
>
> Hereıs the code Iım using:
>
> <?php echo date('D,n-j-y h:i:s a',strtotime($row_rsSessions['date'])); ?>
>
>
> If I give the timestamp a value of 8[/color]
8? ?!?!?!?
[color=blue]
> I can get the date to work correctly
> but if itıs at 10 or 12[/color]
10?, 12? ?!?!?!?!
[color=blue]
> I get the wrong date and it comes out the same for
> every record * Mon,38-1-18-09:14:07 pm[/color]
If I'm not mistaken that's "2038-01-19 02:14:07 UTC"
-- the limit for UNIX_TIMESTAMPs
[color=blue]
> Anyone have any thoughts ?[/color]
Let's see ...
~$ php -r 'echo date("Y-m-d H:i:s", strtotime("20041026163628")), "\n";'
1970-01-01 00:59:59
oops -- if you MySQL returns something like the above it will not work.
~$ php -r 'echo date("Y-m-d H:i:s", strtotime("2004-10-26 16:36:28")), "\n";'
2004-10-26 16:36:28
Aha! This works!
~$ php -r 'echo date("Y-m-d H:i:s", "20041026163628"), "\n";'
2038-01-19 03:14:07
oops
~$ php -r 'echo date("Y-m-d H:i:s", "2004-10-26 16:36:28"), "\n";'
1970-01-01 00:33:24
oops
Let's now check MySQL ...
~$ mysql -upedro -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 350 to server version: 4.0.21-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> select unix_timestamp("20041026163828");
+----------------------------------+
| unix_timestamp("20041026163828") |
+----------------------------------+
| 1098805108 |
+----------------------------------+
1 row in set (0.01 sec)
mysql> exit
Bye
~$ php -r 'echo date("Y-m-d H:i:s", "1098805108"), "\n";'
2004-10-26 16:38:28
Aha! Maybe it's best to select UNIX_TIMESTAMPs and let MySQL and PHP
worry about dates.
[color=blue]
> Thanks[/color]
<snip MIME stuff>
You're welcome.
--
USENET would be a better place if everybody read: | to mail me: simply |
http://www.catb.org/~esr/faqs/smart-questions.html | "reply" to this post, |
http://www.netmeister.org/news/learn2quote2.html | *NO* MIME, plain text |
http://www.expita.com/nomime.html | and *NO* attachments. |