Ch0c4,
il y a 11 ans
Tu crée autour de ton bouton edit et de ton foreach un form avec le helper form
exemple
<?php
echo $this->Form->create('products');
echo $this->Form->submit('Editer');
?>
<?php foreach($products as $k=>$v):?>
<tr>
<td>
<?php echo $this->Form->checkbox($v'Product']'id'], array('class'=>'checkbox');
</tr>
<?php endforeach; ?>
<?php echo $this->Form->end(); ?>
A peu près comme ça sans les erreur de codes ^^