
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

$long = $_GET['long'];
$lat = $_GET['lat'];


header("Location: https://www.google.com/maps/place/".$long.",".$lat);
exit(); // Ensure script stops execution after redirection



?>