我想把validation_errors()中的错误保存在变量中,并在视图中显示它。
我知道如何将变量传递给视图传递给另一个视图:
在控制器中:
$data['date'] = 'some_data';
$this->load->view('register/register_open',$data);
in view_open
<?php
$this->load->view('mains/header');
$this->load->view('login/loggin');
$this->load->view('mains/menu');
$this->load->view('left_column/left_column_before');
$this->load->view('left_column/menu_left');
$this->load->view('left_column/left_column');
$this->load->view('center/center_column_before');
$this->load->view('register/register_view');
$this->load->view('center/center_column');
$this->load->view('right_column/right_column_before');
$this->load->view('right_column/right_column');
$this->load->view('mains/footer');
?>
鉴于:
<?php echo $date; ?>
但我不知道如何将validation_errors()保存在数组或变量中,然后传递给查看页面。你能帮帮我吗?
1条答案
按热度按时间afdcj2ne1#
参见本手册:http://ellislab.com/codeigniter/user_guide/general/views.html
赋值变量:
现在在视图中将其用作:
在您的情况下,请在视图中尝试以下操作:
您将了解数据结构以及如何处理它。