我开始学习 PHP 框架,特别是 cakephp。我知道如何插入数据库,但我对在同一页面上显示条目感到好奇。我不想重新加载或重定向页面只是为了显示结果。
我在数据库中只有三个四个字段。id、姓名、电子邮件和日期。我在模型页面中使用了相同的验证。
控制器:
<?php
function index(){
if($this->request->is('Post')){
$this->Save->save(data);
}
//display the entries from the database
$this->set('saves', $this->Save->find('all'));
}
?>
索引.ctp:
<?php
echo $this->Form->create('Save');
echo $this->Form->input('name', array('class'=>'name', 'required' => true));
echo $this->Form->input('email', array('class'=>'email', 'required' => true));
echo $this->Form->input('message', array( 'required' => true));
echo $this->Form->submit('submit', array('formnovalidate' => true));
//i want to display the entries here
foreach($saves as $row){
echo $row['Save']['name'];
echo $row['Save']['comment'];
}
?>
问题是,它会影响文本区域。它将尺寸减小到一半。需要帮忙。多谢。我是 cakephp 的新手,我一直在谷歌搜索,但没有找到任何结果。谢谢