Codeigniter time showing as AM not PM Codeigniter time showing as AM not PM codeigniter codeigniter

Codeigniter time showing as AM not PM


You need to change the format of your data when returning it from the database. Chage the lowercase h (%h) to a capital H (%H) to return 24-hour format rather than the 12 hour you're currently getting.

You're code should look like the below:

$the_date = mdate('%d/%m/%Y %H:%i', strtotime($row->date))