PHP-Date Handling - In Class Exercise

1. Use the PHP date functions to display the current date in the following formats.

03, 29, 2024
29, 03, 2024
March, Friday, 29, 2024

2. Use the PHP date and time functions to display the current time in the following formats.

07:23
07:23
07:23:20
07:23:20

3. Display the date 3 days from the current date. Use the (Monday September 1, YYY) format.

April, Monday, 1, 2024

4. Display the date 7 days from the current date. Use the (Monday September 1, YYY) format.

April, Friday, 5, 2024

5. Display the date 30 days from the current date. Use the (Monday September 1, YYY) format.

April, Sunday, 28, 2024

6. Display the date 1 year from the current date. Use the (Monday September 1, YYY) format.

March, Saturday, 29, 2025