Alright well basically I want input from a form to show up as the date would in this format:
$today = date("m.d.Y");
Here is my code:
$date = $month.$day.$year;
I have it all working except the periods don't show up. So it would look like this: 10272004 for today. I just want to get 10.27.2004
How do I fix this?