Quote:
Originally Posted by Brad.loo
You can do something like this:
PHP Code:
$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:
PHP Code:
$date= vbdate($vboptions['dateformat'], $dateline);
$time= vbdate($vboptions['timeformat'], $dateline);
to go even further with $time you can use:
PHP Code:
$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