Bonjour à tous voici mon tableau:
http://snakejl.free.fr/Tableau,html.bmp

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<? include("connect.inc") ?>
<html>
<link rel="stylesheet" href="sitebn.css" type="text/css">
<head>
<META HTTP-EQUIV="Refresh" CONTENT="10";>
<body>
 
<center><font color='red'><h1><i>Liste des réservations et gestion de la base de donnée</i></h1></center>
 
<a href="effacertoutroulage.php"><br><font color='yellow'>Cliquez ici pour effacer toutes les réservations de votre liste</a></font></p>
<INPUT type="CHECKBOX" value="1" name="effacer"></td>
<table class="frm" align="center">
<tr><th bgcolor='#99CCFF' width="3%">Numéro</th><th bgcolor='#99CCFF' width="3%">Grade</th><th bgcolor='#99CCFF' width="15%">Nom</th><th bgcolor='#99CCFF' width="15%">Prénom</th><th bgcolor='#99CCFF' width="5%">Téléphone</th><th bgcolor='#99CCFF' width="30%">Motif</th><th bgcolor='#99CCFF' width="2%">Jour</th><th bgcolor='#99CCFF' width="2%">Mois</th><th bgcolor='#99CCFF' width="4%">Année</th><th bgcolor='#99CCFF' width="3%">Heure début</th><th bgcolor='#99CCFF' width="2%">Minutes début</th><th bgcolor='#99CCFF' width="3%">Heure fin</th><th bgcolor='#99CCFF' width="3%">Minutes fin</th><th bgcolor='#99CCFF' width="6%">Effacer</th></tr>
 
 
<?
$resultat = mysql_query("select `id` , `grade` , `nom` , `prenom` , `telephone` , `motif` , `From_day` , `From_month` , `From_year` , `heuredebut` , `minutesdebut` , `heurefin` , `minutesfin` from roulage");
while($ligne= mysql_fetch_object($resultat))
{
	echo "<tr onclick=\ onmouseover=\"this.className='over'\" onmouseout=\"this.className='out'\" class=\"out\">
	<td><font color='yellow'>$id->id</td></font>
	<td><font color='yellow'>$ligne->grade</td></font>
	<td><font color='yellow'>$ligne->nom</td></font>
	<td><font color='yellow'>$ligne->prenom</td></font>
	<td><font color='yellow'>$ligne->telephone</td></font>
	<td><font color='yellow'>$ligne->motif</td></font>
	<td><font color='yellow'>$ligne->From_day</td></font>
	<td><font color='yellow'>$ligne->From_month</td></font>
	<td><font color='yellow'>$ligne->From_year</td></font>
	<td><font color='yellow'>$ligne->heuredebut</td></font>
	<td><font color='yellow'>$ligne->minutesdebut</td></font>
	<td><font color='yellow'>$ligne->heurefin</td></font>
	<td><font color='yellow'>$ligne->minutesfin</td></font>
	<td><font color='yellow'>$effacer->effacer</td></font>
	</tr>";
}
 
?>
 
</table>
</head>
</body>
</html>


Mon but est qu'à chaque ligne du tableau il y a un ckeckbox qui s'affiche automatiquement en dessous de la colone "effacer".
Ensuite la personne sélectionne les personnes désirées via le checkbox et efface avec un bouton envoyé que je créerai.
Voilà le plus chaud c'est un ckeckbox qui s'affiche automatiquement à chaque fois qu'une ligne se rajoute.

Merci de m'aider