second initial commit

This commit is contained in:
Jérôme Bousquié
2016-09-22 14:24:56 +02:00
parent 51d0c765b7
commit 45a0a47778
13 changed files with 862 additions and 0 deletions

11
admin/con_ip.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
header('Content-type: application/json; charset=utf-8');
include('connexions.php');
$ip = $_GET["ip"];
$con_ip = Con_ip($ip);
$tab = "";
if ($con_ip) {
$tab = json_encode($con_ip);
}
echo $tab;
?>