How could I adjust the php time format to a.m and p.m with the periods included?
date(\'h:i a\');
There's no straightforward way.
What I'd do is fetch date("a"), see whether it's am or pm, and then output a.m or p.m accordingly.
date("a")
am
pm
a.m
p.m