piper338 Posted March 21, 2010 Report Share 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 Link to comment Share on other sites More sharing options...
piper338 Posted March 21, 2010 Author Report Share 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 Link to comment Share on other sites More sharing options...
Administrators simpilot Posted March 21, 2010 Administrators Report Share 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 Link to comment Share on other sites More sharing options...
TennShadow Posted March 21, 2010 Report Share 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 Link to comment Share on other sites More sharing options...
piper338 Posted March 21, 2010 Author Report Share 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 Link to comment Share on other sites More sharing options...
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.