Jason Pruim wrote:

> Hi Everyone,
>
> First off, I'm using PHP 5.2.0 and apache 1.3.33
>
> I am trying to figure out what format a string is in in a database. 
> It's a timecard system that I have found on-line and I am attempting 
> to figure out how to write a script that would give me everyones 
> timecard for the month on one screen I can print out for accounting 
> to use. Below is an example of one of the lines in the database, What 
> I'm really interested in is how it represents the "day".
>
> user           day                job_name                          
> minutes     sequence
>
> root   1171774800   Production & technology Manager     
> 990             3
>
Looks like epoch time.

Use date("Y-m-d",$epochtime); to get a standard date string out of it.

www.php.net/date/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to