View Single Post
Old 10-13-2008, 08:17 PM   #2 (permalink)
ReSpawN
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

First off, you should formulate your variables and so forth.

The most wise thing to do, is to, when people register, post a timestamp with just the time() function or
PHP Code:
list( $microTime$timeStamp ) = explode" "microtime() );
$registerDate = ( $microTime $timeStamp );

// Or just do this, which is more general but easy. microtime() is only used for timestamp and so forth (query time etc.)
$registerDate time(); 
That returns the date which can be transformed like so;
PHP Code:
print( date'H:i:s d-m-Y'$registerDate ) ); 
This returns it in every format you want.

If this is not what you mean, please formulate your post a bit more accurate and tell me what your plan is.
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote
The Following User Says Thank You to ReSpawN For This Useful Post:
KingOfTheSouth (10-13-2008)