Jump to content

Recommended Posts

Posted

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.

Posted

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); ?>

  • Administrators
Posted

Try ->

<?php echo date(DATE_FORMAT, strtotime($userinfo->joindate)); ?>

That should output it in the format that is defined in you admin settings. B)

  • Like 2
Posted

Try ->

<?php echo date(DATE_FORMAT, strtotime($userinfo->joindate)); ?>

That should output it in the format that is defined in you admin settings. B)

Yup that worked thanks!

Chad C.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...