sorry, could u pls tell me what is wrong with my coding:
$currentdate = date("Y-m-d H:i:s");
$differencetolocaltime=13;
$new_U=date("U")-$differencetolocaltime;
$actualdate=date($currentdate, $new_U);
echo $currentdate;
echo $actualdate;
what i found is, the $currentdate is equal to $actualdate. how come? what's wrong? thank you.