-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreserver.php
More file actions
33 lines (16 loc) · 883 Bytes
/
reserver.php
File metadata and controls
33 lines (16 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include ("admin/includes/sessionclient_connect.php");
$id = $_GET['code'];
$stmt = $conn->prepare("SELECT CodeSite as id, Designation, Description, Adresse, Longitude, Latitude, Prevision, TempsPrevision, tbl_site.Image as image, Gestionnaire, Categorie, Province FROM tbl_site
INNER JOIN tbl_categorie
ON tbl_site.CodeCategorie=tbl_categorie.CodeCategorie
INNER JOIN tbl_province
ON tbl_site.CodeProvince=tbl_province.CodeProvince
WHERE CodeSite = $id");
$stmt->execute();
$site = $stmt->fetch();
include ("includes/head.php");
include ("includes/header.php");
include("includes/reserver/content.php");
include("includes/footer.php");
?>