I want to create a hidden form input where I want to put my hidden value I want my form like this :
<input type="hidden" name="d_id" value="2">
How can I create a form?
Hey I find a solution cakephp3.0 if you want to add a hidden form with name and value I had try this code :
echo $this->Form->hidden('d_id', ['value'=>$id]);
to get this value
<input type="hidden" name="d_id" value="2">