hello
je n'arrive pas a récuperer le contenu d'une cellule d'un tableau comme ceci :
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
<?php
if($_POST['action'] == 'submitted')
{
 
$champs1 = $_POST['tache'];
echo " champs1=";
echo "$champs";
 
}
?>
<html>
<head>
<form name="page_form" action="<?php echo $_SERVER['PHP_SELF']; ?>"  method="post" >
<table border="1">
  <tr>
    <td name ="tache">contenu1</td>
    <td>contenu2</td>
  </tr>
</table>
 
<input type="hidden" name="action" value="submitted">
		<input name="submit"  value="Suivant &gt;&gt;" type="submit">
</form>
</html>
a cote de champs1= rien ne s'affiche
je ne sais pas comment faire ???????????????
aider moi