PDA

View Full Version : MySQL Problem


Feckie (Roger)
04-23-2006, 01:14 PM
Can anyone tell me ho to Decipher the Date codes used in The Forum mySQL Database...........

ie: 1145785574

rake
04-23-2006, 01:41 PM
Those are unix-timestamps. They represent the number of seconds that have passed since the start of the unix era (January 1st, 1970). You can use the date() function to format them. Take a look here for syntax and examples: http://ro.php.net/manual/en/function.date.php

Paul M
04-23-2006, 02:02 PM
Do you mean decode them in code, or you want to know what one is yourself ?

Feckie (Roger)
04-23-2006, 03:16 PM
Do you mean decode them in code, or you want to know what one is yourself ?


The Link You Put Here (https://vborg.vbsupport.ru/showpost.php?p=957860&postcount=2) Worked Thanks again Paul


This Was Also Helpful Thanks " rake "
Those are unix-timestamps. They represent the number of seconds that have passed since the start of the unix era (January 1st, 1970). You can use the date() function to format them. Take a look here for syntax and examples: http://ro.php.net/manual/en/function.date.php

Paul M
04-23-2006, 03:19 PM
The Link You Put Here (https://vborg.vbsupport.ru/showpost.php?p=957860&postcount=2) Worked Thanks again Paul
That was why I asked, I was going to post that link in here - I came across that other thread later. :)