Ask a Question related to PHP Development, Design and Development.
-
Andy Hassall #1
Re: Help needed for TimeStamp conversion between MySQL and PHP
On Sun, 06 Jul 2003 19:17:58 GMT, "Steven" <xueming@comcast.net> wrote:
[url]http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#Date_and_time_functions[/url]>TimeStamp in MySQL is unix timestamp like YYYYMMDDHHMMSS or shorter depend
>on the size, but the timestamp for PHP would be the total seconds from
>1/1/1970( or something like it).
>
>Any easy function to convert them ?
--
Andy Hassall (andy@andyh.co.uk) icq(5747695) ([url]http://www.andyh.co.uk[/url])
Space: disk usage analysis tool ([url]http://www.andyhsoftware.co.uk/space[/url])
Andy Hassall Guest
-
Translating MySQL timestamp to datetime
Hi All, Any thoughts on the easiest way to translate a MySQL timestamp (which looks like 20040422090941) to the datetime format (which looks like... -
mysql date to timestamp
I would like to use php to query a database and retrieve a unix timestamp. The problem is that mysql is storing the data in the date format and... -
MySQL timestamp to desired date function
Hi all, I have a a timestamp in a DB (14 digits) that I want to display like I want in my pages. I tried to use strtotime, mktime and date... -
[PHP] MySQL timestamp to desired date function
Sure. One result is 20030918014916. That sound like YYYYMMDDHHMMSS to me right? Thanks, Cesar Aracena www.icaam.com.ar -----Mensaje... -
mysql or php timestamp arithmatic
Hey everyone, I am writing an application to keep track of employee vacation leave. I have two timestamp(14) database fields, lets call them... -
Ev0 #2
Re: Help needed for TimeStamp conversion between MySQL and PHP
"Steven" <xueming@comcast.net> wrote in message
news:GB_Na.51191$926.6117@sccrnsc03...afaik a unix timestamp IS the number of seconds since 01/01/1970.> TimeStamp in MySQL is unix timestamp like YYYYMMDDHHMMSS or shorter depend
> on the size, but the timestamp for PHP would be the total seconds from
> 1/1/1970( or something like it).
>
> Any easy function to convert them ?
>
> Regards,
> -Steven
>
in a mysql query you can use FROM_UNIXTIME(unix timestamp here) and
UNIX_TIMESTAMP(mysql date column here)
Ev0 Guest



Reply With Quote

