
07-12-2004, 06:05 PM
|
|
|
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Boofo
That worked like a charm, thank you, sir.
One last thing, if I want to strip the DAY out of that string, how could I do that? I use
l, FjS, Y
for the birthdays on my board, but in this program I only want
F j, Y
Can this be done?
|
Change this:
PHP Code:
$bbuserinfo['birthday'] = vbdate($vboptions['calformat1'], mktime(0, 0, 0, $bday[0], $bday[1], 1992), false, true, false);
to this:
PHP Code:
$bbuserinfo['birthday'] = date('F j, Y', mktime(0, 0, 0, $bday[0], $bday[1], 1992), false, true, false);
|