Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
9 righe
323 B
9 righe
323 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
$data = array(); |
|
if (!empty($_GET["value"]) && !empty($_GET["source"]) && !empty($_GET["result"])) { |
|
$data = getGeoData($_GET["source"],$_GET["value"],$_GET["result"]); |
|
} |
|
echo json_encode($data); |
|
?>
|
|
|