im using this code too show now time in my website:
<?php date_default_timezone_set('Asia/Tehran'); echo date('h:i:s'); ?>
but with this code show me 06:00 instead of 18:00 please help me how to i can change this code to edit this problem.
From the manual:
h 12-hour format of an hour with leading zeros
H 24-hour format of an hour with leading zeros
Use H
not h
You can use like this-
echo date('H:i:s');