piper338 Posted March 21, 2010 Report Posted March 21, 2010 Howdy again, I am trying to use echo $userinfo->joindate in my pilot center is returns a result like... 2010-02-10 23:15:50 How can I format it to return 2/10/2010? Thanks, Chad C. Quote
piper338 Posted March 21, 2010 Author Report Posted March 21, 2010 Howdy again, I am trying to use echo $userinfo->joindate in my pilot center is returns a result like... 2010-02-10 23:15:50 How can I format it to return 2/10/2010? Thanks, Chad C. Ok, I tried the following and it returns 12/31/1969 this is the right format but the wrong date... I'll keep trying. <?php echo date('m/d/Y', $userinfo->joindate); ?> Quote
Administrators simpilot Posted March 21, 2010 Administrators Report Posted March 21, 2010 Try -> <?php echo date(DATE_FORMAT, strtotime($userinfo->joindate)); ?> That should output it in the format that is defined in you admin settings. 2 Quote
TennShadow Posted March 21, 2010 Report Posted March 21, 2010 Try -> <?php echo date(DATE_FORMAT, strtotime($userinfo->joindate)); ?> That should output it in the format that is defined in you admin settings. That worked... Thanks! Quote
piper338 Posted March 21, 2010 Author Report Posted March 21, 2010 Try -> <?php echo date(DATE_FORMAT, strtotime($userinfo->joindate)); ?> That should output it in the format that is defined in you admin settings. Yup that worked thanks! Chad C. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.