When I run this code:
$time = time();
echo "$time<br>";
echo date("H:m \a\\t d/m/Y", $time);
It echos:
1668166632
11:11 at 11/11/2022
But the expected result is:
1668166632
12:37 at 11/11/2022
This happens until the next hour which it changes to 12:11.
How do I fix this?