How do I create a variable in PHP of today\'s date of MM/DD/YYYY format?
I need to input that date as a hidden form field when someone comes onto the site. So I wo
use the builtin date() function.
$myDate = date('m/d/Y');
the string parameter 'm/d/Y' is the returned date pattern. m is for 2 digit months, d for 2 digit day value and Y for 4 digit year value.