"; $monthName = array(1 => "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); $today = time(); //stores today's date $f_today = date("M-d-Y",$today); //formats today's date echo "
\n"; echo "

Today is $f_today


\n"; echo "
\n"; /* build selection list for the month */ $todayMO = date("n",$today); //get the month from $today echo "\n"; /* build selection list for the day */ $todayDay= date("d",$today); //get the day from $today echo "\n"; /* build selection list for the year */ $startYr = date("Y", $today); //get the year from $today echo "\n"; echo "
\n"; ?>