Blame view

html/supprBanc.php 355 Bytes
c1606691   lwadbled   feat(gestionBanc....
1
2
3
4
5
6
7
8
  <?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);
b12775c2   lwadbled   fix(): resolution...
9
  	//$reponse = mysqli_fetch_array($exec_requete);
c1606691   lwadbled   feat(gestionBanc....
10
11
12
13
  	echo "<meta http-equiv=\"refresh\" content=\"0;url=gestionBanc.php\">";
  	mysqli_close($db);
  }
  ?>