Source Code:
(back to article)
<?php // Set the timezone date_default_timezone_set('Europe/Paris'); // Get the day of the week $day_of_week = date('l'); // Print the day of the week echo "Today is $day_of_week.";
Result:
Report an issue