In the context of PHP, how should variables like $Today be properly placed within a script for effective date display?

When displaying dates in PHP, it is important to properly format the date variable for the desired output. To display the current date, you can use the date() function with the desired format specifier. For example, to display the current date in the format "Y-m-d", you would use $Today = date("Y-m-d"); within your PHP script.

$Today = date("Y-m-d");
echo "Today's date is: " . $Today;