By Phil Frilling, 4 January, 2017 PHP Convert seconds to HH:MM:SS format A quick php snippet to convert seconds to HH:MM:SS $seconds = round($seconds); $output = sprintf('%02d:%02d:%02d', ($seconds/ 3600),($seconds/ 60 % 60), $seconds% 60); Tags PHP
By Phil Frilling, 5 December, 2014 Get the distance between two postal codes with Google Maps You can use Google Maps API to get a JSON string with the distance, including driving directions, between two postal codes. Tags api PHP Distance Postal Codes Google Maps