【发布时间】:2015-10-28 13:13:11
【问题描述】:
我是蛋糕 PHP 新手。
如何在 cake php3.0 中进行 jquery 自定义验证
在我的 add.ctp 文件代码下方。
<h2>Add New User</h2>
<!-- link to add new users page -->
<div class='upper-right-opt'>
<?php echo $this->Html->link( 'List Users', array( 'action' => 'index' ) ); ?>
</div>
<?php
echo $this->Form->create('User');
echo $this->Form->input('firstname');
echo $this->Form->input('lastname');
echo $this->Form->input('mobile');
echo $this->Form->input('email');
echo $this->Form->input('username');
echo $this->Form->input('password', array('type'=>'password'));
echo $this->Form->end('Submit');
?>
任何人都可以帮助我。 :)
【问题讨论】:
标签: jquery cakephp-3.0