<?php session_start(); if(isset($_SESSION["utilisateur"])) { header("Location: modifieAgenda.php" } if (empty($_POST["identification"])) { ?> // balise <html>, <head></head> et <body> <? if (!empty($_GET['erreur'])) { echo '<p style="text-align:center; font-weight:bold;">Mauvais login ou mauvais mot de passe.</p><br>'; } ?> // formulaire d'identification et </body> </html> <?php } else if (strpos($_POST['login'], "'" === false && strpos($_POST['login'], '"') === false){ // verification du login/password } else { session_destroy(); header("Location: index.php?erreur=1" } ?>