Hi, I am using
$question_time = date("d-m-Y H:i:s");
code in my PHP file. It works but it works 7 hours late. If it is 8:00 pm in my time it shows 1:00 pm.
I tried
date("d-m-Y (H + 7):i:s");
but it didn't work. How can I fix this problem?
Thanks