Blame view

site/accueil.php 328 Bytes
19ae2416   jnduwamu   MAJ du site
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  session_start();
  ?>
  <!DOCTYPE html>
  
  <html>
  	<head>
  		<?php include("head.php"); ?>
  	</head>
  
  	<!-- Contenu du site -->
  	<body>
  		<?php 
  		include("header.php");
  		if(isset($_SESSION['Login'], $_SESSION['Password']))
  		{
fe22717a   grouille   Affichage du rĂ©seau
17
  			include("network.php");
19ae2416   jnduwamu   MAJ du site
18
19
20
21
22
23
24
25
  		}
  		else
  		{
  			include("formConnexion.php");
  		}
  		?>
  	</body>
  </html>