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
|
<table width="662" height="109" border="0" cellpadding="0" cellspacing="0" id="cadre">
<tr>
<td width="186">
<form id="form1" name="form1" method="post" action="<?php $_SERVER["PHP_SELF"] ?>">
<label>
<input type="checkbox" name="coche1" value="1" />
Choix1
</label><br />
<label>
<input type="submit" name="Submit" value="Submit" />
</label>
</form>
</td>
<td width="199"> </td>
<td width="277">
<?php
if(isset($_POST['coche1']) && $_POST['coche1']==1)
{
echo $_POST['coche1'];
}
?>
</td>
</tr>
</table> |