I have a google maps api, from which I can convert the area name from latitude and longitude. Code given bellow :
<?php
$url="https://maps.google.com/maps/api/geocode/json?latlng=23.756879299999998,90.3801968&key=key";
Now I want to make this $url dynamically. Here I have latlng= 23.756879299999998,90.3801968 I want to make it like this latlng = $lat,$long
How I can make this