affordit Posted January 31, 2008 Share Posted January 31, 2008 What I am attempting to do here is change the Y,M,D that comes from a session variable to M,D,Y. This is what is getting returned on the pages. Your registration will expire: 2009-01-31 What I want to display is. Your registration will expire: 01-31-2009 This is the code I am currently using: <?php session_start(); ?> <table align="center" width="100%" border="0" bgcolor="#FFFFCC"> <tr> <td align="left"><small><B> <?php echo "Welcome: ". $_SESSION['username']; echo " Your registration will expire: ". $_SESSION['end_date']; ?> <td align="right"><small><B> <a href="login.php">Renew your registration now</a> </td> </td> </tr> </table> Quote Link to comment https://forums.phpfreaks.com/topic/88724-solved-strtotime-question/ Share on other sites More sharing options...
kenrbnsn Posted January 31, 2008 Share Posted January 31, 2008 Use <?php echo " Your registration will expire: ". date('m-d-Y',strtotime($_SESSION['end_date'])); ?> Ken Quote Link to comment https://forums.phpfreaks.com/topic/88724-solved-strtotime-question/#findComment-454380 Share on other sites More sharing options...
affordit Posted January 31, 2008 Author Share Posted January 31, 2008 Thanks have a great day Quote Link to comment https://forums.phpfreaks.com/topic/88724-solved-strtotime-question/#findComment-454388 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.