Quote:
Originally Posted by Modin
Try this Boofo...
PHP Code:
$birthdate_parts = explode("-", $bbuserinfo['birthday']); $birthday = date("F j, Y", mktime(0, 0, 0, $birthdate_parts[0], $birthdate_parts[1], $birthdate_parts[3]));
|
Thank you, sir. Your code worked great for the day but it showed 2000 for my birth year, which is just a little off. But you were a heck of a lot closer than I have been able to get.