Forum Moderators: coopster
Lets say later I grab the value from this cell I assign it to a variable, like $date.
By using the following line of code:
<p>Your last order was on <?php echo($date);?>.</p>
I can output:
"Your last order was on 2006-07-10 15:04:36."
However, I would like to have a sentence that says:
"Your last order was on July 10th."
Is there I way in PHP to easily manipulate "2006-07-10 15:04:36" into "July 10th"?
Thanks