salut bon pour s'avoir a quel valeur tu 'as choisis dans ton input j'ai peut etre une solution pour toi
pourquoi pas utlisé l'index d'input et un compteur
exemple :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <?php
$compt=0;
for($i=0;$i<2;$i++)
{
?>
<table width="220" border="1">
<tr>
<td width="59"><label>
<input type="checkbox" name="checkbox" value="<?php print($compt) ?>" />
</label></td>
<td width="86"><label><a href="#" onclick="voila(<?php print($compt); ?>)" >clique ici <?php print($compt); ?></a> </label></td>
</tr>
</table>
<br />
<?php $compt++;
}
?> |
l'input va se boucler $i fois avec le même name
alors utlise l'index des objets pour recuperer ses valeurs grâce a la magie du javascript
1 2 3 4 5
| function voila(choix)
{
vchoix=document.forms['form1'].elements[choix].value;
alert("index.php?choix="+vchoix);
} |
et puis tu met l'evenement Onclick
<a href="#" onclick="voila(<?php print($compt); ?>)" >clique ici?></a>
code complet du l'exemple
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 44 45
| <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
<script language="javascript">
function voila(choix)
{
vchoix=document.forms['form1'].elements[choix].value;
alert("index.php?choix="+vchoix);
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="ecriture.php">
<?php
$compt=0;
for($i=0;$i<2;$i++)
{
?>
<table width="220" border="1">
<tr>
<td width="59"><label>
<input type="checkbox" name="checkbox" value="<?php print($compt) ?>" />
</label></td>
<td width="86"><label><a href="#" onclick="voila(<?php print($compt); ?>)" >clique ici <?php print($compt); ?></a> </label></td>
</tr>
</table>
<br />
<?php $compt++;
}
?>
<br />
<br />
<br />
</form>
</body>
</html> |
Partager