How to calculate distance between two location by PHP Code
If you would like to calculate air distance between two location without any API or mysql query. You can use below code to get distance between two location. $distance_one_latitude = 30.364267; $distance_two_latitude = 30.324860; $distance_one_longitude = 78.087412; $distance_two_longitude = 78.052046; $theta = $distance_one_longitude - $distance_two_longitude; $dist = sin(deg2rad($distance_one_latitude)) * sin(deg2rad($distance_two_latitude)) + cos(deg2rad($distance_one_latitude)) * cos(deg2rad($distance_two_latitude)) * cos(deg2rad($theta)); $dist = acos($dist); $dist = rad2deg($dist); $distance = $dist * 60 * 1.1515; echo $distance = round($distance, 2);
Multi Vendor Marketplace Script - MartySponsored
Inout Blockchain AltExchanger (Crypto to crypto trading exchange platform script)Sponsored
Configure EC2 Auto Scaling
Setting up EC2 Auto Scaling to automatically adjust the number of servers based on traffic, performance, and demand.
AWS Instance & Volume Protection Monitoring Service
Monitoring and protecting up to 10 AWS instances/volumes by enforcing safe deletion settings, with pricing adjustable fo
Analysing your AWS bill and suggesting ways to reduce costs
Deep analysis of your AWS bill with a detailed list of cost saving recommendations.
Help/Fix on AWS Auto Scaling (1 Hour)
One hour of help to troubleshoot or fine tune AWS Auto Scaling behaviour.


