Time Greeting
Create a new php web page that displays a time dependent greeting to the user by doing the following:
- Add html code to the file like you are creating an html page. 
- Add php tags to the body. 
- Create a variable called - $hourand set it equal to a number between 0 and 23.
- Write an if/elseif/else statement that echoes: - “Good Morning” if $houris between 6 and 11 (inclusive)
- “Good Afternoon” if $houris between 12 and 17 (inclusive)
- “Good Evening” if $houris between 18 and 23 (inclusive) or if$houris between 0 and 5 (inclusive)
 - Note, you can do this with what you learned in the tutorial but it is a little easier with logical operators, which weren’t in the tutorial. Read the PHP logical operators documentation for help. 
- “Good Morning” if 
- Test the code by changing the value of the - $hourvariable and reloading the page.
- To make the page use the actual time, replace the variable defintion line with the code: - $hour = intval(date('G', time()));
Submission
Please show your completed web page and source code to the instructor.