0

我开始学习 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 的新手,我一直在谷歌搜索,但没有找到任何结果。谢谢

4

1 回答 1

0

据我了解,您的问题似乎是 CSS 问题而不是 CakePHP 问题。我不认为打印数据会将字段切成两半。

尝试在 echo $this->Form->submit('submit', array('formnovalidate' => true)); 之后放置 因为提交方法不包括事后。

如果您不想手动添加表单结束标记,可以使用 $this->Form->end。

于 2013-07-05T06:01:36.643 回答