How could I adjust the php time format to a.m and p.m with the periods included?
date(\'h:i a\');
Just use str_replace to replace am with a.m. and pm with p.m.