I'm new to CakePHP and still really have no thorough understanding. if I have a mysql database with only a primary key field how can I make an input field for it using cake bake option. After baking I tried adding this line to the view file generated
<fieldset>
<legend><?php echo __('Add Id'); ?></legend>
<?php
**echo $this->Form->input('identity');**
?>
</fieldset>
It did not work ... What is the correct method to get an input field for the primary key?
The table id has only one field named identity in the data base