11 lines
219 B
PHP
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();
|
|
?>
|