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 would need to grab today's date and convert it into that format. Thanks.
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 would need to grab today's date and convert it into that format. Thanks.
What about using the function date ? Just have to find the right format ; 'm' for month, 'd' for day, 'Y' for year using four digits, for instance
In your case, something like this, I guess :
date("m/d/Y")
And if you want another day than now, use the second optional parameter.