Hi there,
I have a php file on my apache server, the file includes the following:
$today = date('YmdHis');
$deadLine=20030726141500; //Year=2003,Month=07..etc
$answer=$deadLine-$today;
if($answer<=0)
{
print "You can submit";
}
else
{
print "Deadline ended";
}
My question is:
Does this $today = date('YmdHis'); get the current date from my apache server or from my clients PC computer. (i.e if the client changed the clock on his/her computer does that change the value of $today?
Thanks