How to get the AM and PM in my time

Hi, how can i get the AM or the PM in my time

in this example which is posted

7:00AM

Thank you in advance.

Okay i solved it now :slight_smile:

That’s great! :slight_smile:
Do you mind telling us the solution?

I would suppose it was using the ‘A’ format code of the [FPHP]date[/FPHP] function.

Please use this Code for AM or PM.

<?PHP
echo date("h:i:s A");
?>

A is use for AM or PM in php.

Happy to help you.

I use the new DateTime() then format :slight_smile: