How to generate Long and Latitude in Google Map PHP CURL with API key
<?php $address = “Kathmandu, Nepal”; $url = “https://maps.google.com/maps/api/geocode/json?key=AIzaSyAPV_cu88rjpd2sXAO0N1mW94T_AlBkIC4&address=”.urlencode($address); $ch = curl_init(); curl_setopt($ch,…