Bhu*_*ada 2 php forms codeigniter-3
我有一个注册表。成功后,我想删除set_value值并取消设置所有发布的值。
查看.php
<?php echo validation_errors(); ?>
<?php if(isset($msg)){
echo $msg;
} ?>
<form action="" method="post">
<h5>Username</h5>
<input type="text" name="username" value="<?php echo set_value('username'); ?>" size="50" />
<h5>Password</h5>
<input type="text" name="password" value="<?php echo set_value('password'); ?>" size="50" />
<div>
<input type="submit" value="Submit" />
</div>
</form>
Run Code Online (Sandbox Code Playgroud)
控制器函数.php
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
$this->form_validation->set_rules('username', 'Username', 'required');
$this->form_validation->set_rules('password', 'Password', 'required');
if ($this->form_validation->run() == FALSE){
$data->msg='Please fill all field';
$this->load->view('view',$data);
}else{
$data->msg='success';
unset($_POST);
$this->load->view('view',$data);
}
Run Code Online (Sandbox Code Playgroud)
我尝试unset($_POST)但没有奏效,也尝试
public function clear_field_data() {
$this->_field_data = array();
return $this;
}
Run Code Online (Sandbox Code Playgroud)
但没有任何效果。我正在使用codeigniter 3.1.5..请帮忙整理一下。
I solved my problem my self.
view.php
<?php echo validation_errors(); ?>
<?php if(isset($msg)){
echo $msg;
} ?>
<form action="" method="post">
<h5>Username</h5>
<input type="text" name="username" value="<?php echo set_value('username'); ?>" size="50" />
<h5>Password</h5>
<input type="text" name="password" value="<?php echo set_value('password'); ?>" size="50" />
<div>
<input type="submit" value="Submit" />
</div>
</form>
Run Code Online (Sandbox Code Playgroud)
Controller function.php
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
$this->form_validation->set_rules('username', 'Username', 'required');
$this->form_validation->set_rules('password', 'Password', 'required');
if ($this->form_validation->run() == FALSE){
$data->msg='Please fill all field';
$this->load->view('view',$data);
}else{
$data->msg='success';
$this->form_validation->clear_field_data();
$this->load->view('view',$data);
}
Run Code Online (Sandbox Code Playgroud)
MY_Form_validation.php
class MY_Form_validation extends CI_Form_validation {
public function __construct($config)
{
parent::__construct($config);
}
public function clear_field_data() {
$_POST = array();
$this->_field_data = array();
return $this;
}
}
Run Code Online (Sandbox Code Playgroud)
And problem solved in new version codeIgniter.