我在网上搜索过,但一无所获。(也有多个搜索引擎——我看过!)
我正在尝试将文本链接作为“表单提交”按钮。如果这在 CakePHP 中可行,有什么想法吗?
当前查看代码如下!
<?php
echo $this->Form->create('trainees', array(
'action' => 'reassign'
));
echo $this->Form->input('emailaddress', array(
'value' => 'scott@something',
'type' => 'hidden',
));
echo $this->Form->submit('Re-Assign Mentor', array(
'class' => 'submit mid',
'before' => '<p>',
'after' => '</p>'
));
echo $this->Form->end();
?>