Re: Convert time

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



virtualsoftware@xxxxxxxxx wrote:
> Hi,
>
> I have a database where i store the username and date when he registered.
> The time when he registered is using the time() function.
>
> I want to display the date he registered in this format: year, month, day, hour, minute,  second.

<?php

/** For more information, see http://php.net/manual/en/function.date.php */

/** Get this from the DB */
$time = time();
/** This is the formatting string.  Change if you want a new format. */
$format = 'Y-m-d h:i:s';
/** Voila!  Formatted timestamp.  */
echo date($format, $time);

?>

--
Teach a man to fish...

NEW? | http://www.catb.org/~esr/faqs/smart-questions.html
STFA | http://marc.theaimsgroup.com/?l=php-general&w=2
STFM | http://php.net/manual/en/index.php
STFW | http://www.google.com/search?q=php
LAZY |
http://mycroft.mozdev.org/download.html?name=PHP&submitform=Find+search+plugins

Attachment: signature.asc
Description: OpenPGP digital signature


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux