Quote:
Originally Posted by Vaupell
if the timestamp is the unix stamp as most common in php then.
http://php.net/manual/en/function.strftime.php
$timestamp = timenow(); <-- or get from vb database.
$format = '%Y/%b/%a - %T'
$displaytime = $strftime($format, $timestamp)
echo $displaytime;
|
Cool - Thanks for your suggestion! I'll give that a shot. I was interested in using built-in vb functionality though.