我创建了一个带有隐藏字段的表单,其中包含电子邮件的值,但电子邮件的值不会保存在数据库中。
这是表单字段:
echo $this->Form->hidden('emailadres', ['value' => 'email@example.com']);
当我读取数组$ this-> request->数据时,我会看到数组中的电子邮件。数据库中的列名为' emailadres'。 这是数组的输出:
array(1) { ["Ticket"]=> array(9) { ["id"]=> string(2) "4872 ["emailadres"]=> string(24) "email@example.com" ["title"]=> string(5) "This is a title" ["department"]=> string(9) "department1" ["message"]=> string(32) "This is a message"} }
有谁知道为什么这个电子邮件字段没有保存到数据库?
谢谢!