Jump to content

[SOLVED] strtotime question


affordit

Recommended Posts

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>

Link to comment
https://forums.phpfreaks.com/topic/88724-solved-strtotime-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.