我在如下代码的表单中生成列表。但是为了更新视图,如何根据用户选择特定选项。假设此用户的角色是Customer。那么如何在CakePHP 3中选择这个(Customer)选项。
<?= $this->Form->create($user) ?>
<?php
echo $this->Form->input('fullname');
echo $this->Form->input('contact_no');
?>
<div class="form-group">
<?php echo $this->Form->select(
'role',
['Customer', 'Staff', 'User'],
['title' => 'Select user type']
); ?>
</div>
<?= $this->Form->end() ?>