Ben aşağıdaki kod ile herhangi bir değer geçmek olamaz anlamak cant:
<div class="menu">
Por favor seleccione os conteúdos:
<form name="Categorias" action="Elementos_Descritivos.php" method="post">
<?php
$Categorias = array ("Nome", "Data", "Cliente", "Observacoes");
foreach( $Categorias as $key => $value){
echo "<div class=\"cb-row\">
<label for=\"$value\">$value:</label>
<input id=\"$value\" $value=\"$value\" type=\"checkbox\" value=\"$value\" checked />
</div>";
}
?>
<div class="submit">
<input type="submit" value="Seguinte" />
</div>
</form>
</div>
</div>
Elemento_Descritivos.php sayfada Tüm sahip kodu:
<?php
print("<pre>");
print_r($_POST);
print("</pre>");
?>
Bu sadece çıkışlar:
Array ( )
Teşekkür ederim.