|
|
||||
|
|
// get current date
$current = getdate();
// turn it into strings
$current_time = $current["hours"] . ":" . $current["minutes"] . ":" .
$current["seconds"]; $current_date = $current["weekday"] . ", ". $current["month"] . " " .$current[mday] . ", " .$current["year"];
// print_r("It is now $current_time on $current_date")
print_r("Pittsburgh $current_date");
?>
|
|
||
|
|
||||