PDA

View Full Version : vbtime?


AnhTuanCool
11-01-2004, 12:47 AM
Hi all,

I just want to ask what is the function convert time (like lastactivity) in database into time understandable for users? Thanks in advanced :)

Brad
11-01-2004, 12:50 AM
You can do something like this:

$date = vbdate('m-d-y', $dateline);
$time = vbdate('g:i a', $dateline);

AN-net
11-01-2004, 02:12 PM
You can do something like this:

$date = vbdate('m-d-y', $dateline);
$time = vbdate('g:i a', $dateline);
actually a better way to follow some sort of similarity in your time parsing would be to use:

$date= vbdate($vboptions['dateformat'], $dateline);
$time= vbdate($vboptions['timeformat'], $dateline);


to go even further with $time you can use:

$time= vbdate($vboptions['timeformat'], $dateline, 1);

which say if something was made a minute or two ago it will instead of saying "4:30" it will say "1 min ago"

hope this helps;)