Files
le-matelot/client/plugins/magasin/localisation.php
2020-01-27 08:56:08 +01:00

11 lines
219 B
PHP

<?php
include_once(realpath(dirname(__FILE__)) . "/Magasin.class.php");
$magasin = new Magasin();
$magasin->charger($_GET['id']);
$magasin->lat = $_GET['lat'];
$magasin->lon = $_GET['lon'];
$magasin->maj();
?>