<?php // Connexion à la BDD connexionBDD.php //( a mettre dans un fichier à part dont tu feras un INCLUDE ) //--------------------------------------------------------------------------------------------------// // VARIABLES : //--------------------------------------------------------------------------------------------------// $user = 'root'; $pwd = ''; $serveur = 'localhost'; $BDD = "gestionpersonnel"; //--------------------------------------------------------------------------------------------------// $link=mysql_connect($serveur,$user,$pwd) or die('Connexion impossible : ' . mysql_error()); $b=mysql_select_db($BDD,$link) or die ('Impossible de sélectionner la base de données : ' . mysql_error()); ?>
<?php //Connexion à la BDD require_once 'connexionBDD.php'; // --- Le temps des tests ---- // Pour savoir ce qui est reçu par ton script : echo "<pre> Variables GET : <br>"; print_r($_GET); echo "</pre>"; // Récupération des variables $sup = isset($_GET['sup']) ? $_GET['sup'] : NULL; $id = isset($_GET['Id_emp']) ? $_GET['Id_emp'] : NULL; if($sup=='supprimer' && $id) { $sql="DELETE FROM employer WHERE Id_emp='$id' "; $req = mysql_query($sql) or die('<b>ERREUR !</b><br>'.mysql_error() '<br><b>REQUETE </b><br>'.$sql); } ?> ?>
<?php
require_once 'connexionBDD.php';
/*echo "<pre> Variables GET : <br>";
print_r($_GET);
echo "</pre>";*/
$sup = isset($_GET['sup']) ? $_GET['sup'] : NULL;
$id = isset($_GET['Id_emp']) ? $_GET['Id_emp'] : NULL;
if($sup=='supprimer' && $id) {
$sql="DELETE FROM employer
WHERE Id_emp='$id' ";
$req = mysql_query($sql) or die('<b>ERREUR !</b><br>'.mysql_error().'<br><b>REQUETE </b><br>'.$sql);
}
?>
<a href= "Menu.php?id=<?php echo $lign['Id_emp']; ?>&sup=supprimer" onclick= "javascript:return confirm('Vous voulez vraiment supprimer ?')">
<img src="supprimer.gif">
</a>
<pre> Variables GET : <br>Array
(
[id_] => 13
[sup] => supprimer
)
</pre>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Gestion_Employe</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="author" content="Moctar ould Mohamed" />
<script type="text/javascript">
function affiche(page)
{
$('#divConteneur').load(page);
}
</script>
<link rel="stylesheet" href="design.css" type="text/css" />
</head>
<body>
<div id="left">
<img src="logo.jpg" WIDTH='200%' HEIGHT='150'/>
</div>
<div id="center">
<img src="mau.jpg" WIDTH='800%' HEIGHT='150'/>
</div>
<div id="right">
<img src="logo.jpg" WIDTH='200%' HEIGHT='150'/>
</div>
</div>
<div id="content6">
<fieldset style="background-color:#fff;-webkit-border-radius:.9em;-moz-border-radius:.9em;">
<legend><h3>Liste Des Employes</h3></legend>
<div class="agauche"><li> <h3><a onclick="affiche('ajouter_employe.php')">Ajouter Un Employe<img src="ima.jpg"></h3></a></li>
<h3> <li> <a onclick="affiche('recherche_employe.php')">Rechercher Un Employe<img src="recherche.GIF"></a></h3> </legend>
</div>
<table border="4" bordercolor="kader" width="100%">
<tr><td>Matricule</td><td>Nom_Prenom</td><td>Adresse</td><td>Direction</td><td>Service</td><td>Division</td><td>Date_Naissance</td><td>Date_Recrutement</td><td>Sexe</td><td>Situation Familiale</td><td>Carte_Identite</td><td>Caisse</td><td>Categorie</td><td>Grade</td><td>Age</td><td>Edit</td></tr>
<tr>
<td>121785</td>
<td>Tah</td>
<td>TVZN</td>
<td>S.I</td>
<td>Comptabilite</td>
<td>personnel</td>
<td>1989-01-02</td>
<td>2012-10-12</td>
<td>Homme</td>
<td>Celibataire</td>
<td>1254879545</td>
<td>CNAM</td>
<td>A</td>
<td>A</td>
<td>26</td>
<td>
<a href= "affiche_employe.php?id =13&sup=supprimer" onclick= "javascript:return confirm('Vous voulez vraiment supprimer ?')">
<img src="supprimer.gif">
</a>
<a onclick="affiche('modifier_employer.php?Id_emp=13&matricule=121785&nom_prenom=Tah&adresse=TVZN&Service=Comptabilite&date_naissance=1989-01-02&date_recrutement=2012-10-12&sexe=1&situ_famil=situ_famil&carte_Identite=1254879545&categorie=A&grade=A&age=26')">
<img src="icone_modifier.gif" title="modifier"></img>
</a>
</td>
</tr>
</fieldset></form>
</table>
<center>
</center>
</div><!-- end content -->
</div><!-- end inner -->
</div><!-- end outer -->
<div id="footer"></div>
</div><!-- end container -->
</body></html>
<pre> Variables GET : <br>Array
(
[id_] => 13
[sup] => supprimer
)
</pre>
<a href= "affiche_employe.php?Id_emp=13&sup=supprimer" onclick= "javascript:return confirm('Vous voulez vraiment supprimer ?')"> <img src="supprimer.gif"> </a>
<a href= "affiche_employe.php?Id_emp=<?php echo $lign['Id_emp']; ?>&sup=supprimer" onclick= "javascript:return confirm('Vous voulez vraiment supprimer ?')">
<img src="supprimer.gif">
</a>
<td> <a href= "Menu.php?Id_emp=<?php echo $lign['Id_emp']; ?>&sup=supprimer" onclick= "javascript:return confirm('Vous voulez vraiment supprimer ?')"> <img src="supprimer.gif"> </a>
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre questionheader('location:Menu.php');
10 mai 2015 à 03:15
Cordialement