About this site
C S McDonald.com was started because the owner wanted a domain and website to work with HTML, PHP, CSS, and other web designs. In no way, shape, or form should this website be taken seriously.
Useful Sample Tags and Codes
PHP Code
Below belongs in a file called "common.php."
date_default_timezone_set('America/Detroit');
$datetime = date("l F j Y, H:i");
$date = date("l F j Y");
$time = date("H:i");
_____________________________________________________________________________________
Below belongs in a file called of your choose,
as long as the extencion is ".php."
include 'common.php';
// Time Format
echo $time
_____________________________________________________________________________________
What is produced is "11:06"
Remember that The "date_default_timezone_set", sets the time zone to that city.
I set this one to a city inside my time zone. If you want to use this code, feel free to, if you need more timezones, then click here.