salut tous le monde,
j'essay valider ce formulaire vers index3.php mais ca marche pas.
merci de votre aide.
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
<?php
echo'<form method="POST" action="index3.php">';
echo'<table border="0"><tr>';
echo'<th scope="col">nom</th>';
echo'<th scope="col">prénom</th>';
echo'<th scope="col">Absence</th>';
echo'</tr>';
$n='0';
$aj=mysql_query("SELECT * FROM elève where classe='1'");
while ($am=mysql_fetch_array($aj))
{
	echo'<tr>';
	echo'<td>'.$am['nom'].'</td>';
	echo'<td>'.$am['prénom'].'</td>';
	echo'<td><input type="hidden" name="i'.$n.'" value="'.$am['id'].'">';
	echo'<input type="text" name="t'.$n.'"></td>';
	echo'</tr>';
	$n++;
}
echo'</table><input type="submit" value="valider" name="B1">';
echo'</form>';
?>