Blame view

html/supprBanc.php 353 Bytes
c1606691   lwadbled   feat(gestionBanc....
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
  if(isset($_GET['banc'])){
  	include("connexion.php");
  	$banc = $_GET['banc'];
  	include("connexion.php");
  	$requete = "DELETE FROM banc WHERE
  		numero=$banc";
  	$exec_requete = mysqli_query($db,$requete);
  	$reponse = mysqli_fetch_array($exec_requete);
  	echo "<meta http-equiv=\"refresh\" content=\"0;url=gestionBanc.php\">";
  	mysqli_close($db);
  }
  ?>