This commit is contained in:
Robert Langhammer 2022-04-05 18:45:43 +02:00
commit 3c20fef096
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
<?php
$lat = $_GET['lat'];
$lo = $_GET['long'];
if ((!is_numeric($lat)) || (!is_numeric($lo))) {exit("lat/long not numeric!");};
$hoodfile = shell_exec("./get_hood.sh $lat $lo");
echo $hoodfile;