Josh Schlindwein
New member
ok so this is my code
<h1><?php echo date("m/d/y"); ?></h1>
<div><?php echo date("h:i A"); ?></div>
<div id= "day"><?php $a = date("D"); echo "
";
$array = array("Monday","Tuesday","Wednesday","Th…
if ($a == "Mon") {
echo "It's {$array[0]} yaaa!";
}
if ($a == "Tue") {
echo "It's {$array[1]} yaaa!";
}
if ($a == "Wed") {
echo "It's {$array[2]} yaaa!";
}
if ($a == "Thu") {
echo "It's {$array[3]} yaaa!";
}
if ($a == "Fri") {
echo "It's {$array[4]} yaaa!";
}
if ($a == "Sat") {
echo "It's {$array[5]} yaaa!";
}
if ($a == "Sun") {
echo "It's {$array[6]} yaaa!";
}
?></div>
<div id="echo">
<?php
echo "
";
if ($a == "Sat") {
echo "So go out and skate.";
}
elseif ($a == "Sun") {
echo "So go out and skate.";
}
else {echo "So study first then go skate.";
}
?>
what i have done with this to to tell me the time and date of the current time and date and give out the responses i have given for those specific days but unfortunately it does not give out the right time its off by a few hours i use Wampserver is there any way to get it to tell me the correct time on it
the time is off by 8 hours and ten minutes forward my time now is 10:56pm and it shows 05:46am
sorry just off by 8 hours 0 minutes
<h1><?php echo date("m/d/y"); ?></h1>
<div><?php echo date("h:i A"); ?></div>
<div id= "day"><?php $a = date("D"); echo "
";
$array = array("Monday","Tuesday","Wednesday","Th…
if ($a == "Mon") {
echo "It's {$array[0]} yaaa!";
}
if ($a == "Tue") {
echo "It's {$array[1]} yaaa!";
}
if ($a == "Wed") {
echo "It's {$array[2]} yaaa!";
}
if ($a == "Thu") {
echo "It's {$array[3]} yaaa!";
}
if ($a == "Fri") {
echo "It's {$array[4]} yaaa!";
}
if ($a == "Sat") {
echo "It's {$array[5]} yaaa!";
}
if ($a == "Sun") {
echo "It's {$array[6]} yaaa!";
}
?></div>
<div id="echo">
<?php
echo "
";
if ($a == "Sat") {
echo "So go out and skate.";
}
elseif ($a == "Sun") {
echo "So go out and skate.";
}
else {echo "So study first then go skate.";
}
?>
what i have done with this to to tell me the time and date of the current time and date and give out the responses i have given for those specific days but unfortunately it does not give out the right time its off by a few hours i use Wampserver is there any way to get it to tell me the correct time on it
the time is off by 8 hours and ten minutes forward my time now is 10:56pm and it shows 05:46am
sorry just off by 8 hours 0 minutes