Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
 

Time based greeting

This shows how to display a time based greeting to your visitors . I will make one comment before I go on , if you are coming from other programming languages such as VBScript etc then be very careful with your If , else if , else structures . What do I mean well the best scenario is that End If is not required at the end of your if statements . (caught me out a few times).

Anway here is the code for this example

<?php
$theDate = date("H");
if($theDate < 12)
echo "Good morning to you";
else if($theDate < 18)
echo "Good afternoon to you";
else
echo "Good evening to you";

?>

And here is the result

Good evening to you