使用CodeIgniter进行PHP表单验证

时间:2018-01-22 10:02:59

标签: php codeigniter

我有一个简单的表单并应用了验证来使用CodeIgniter的form_validation->set_rules

它工作正常,但唯一的问题是当我提交一个字段为空白的表单时,它会显示一条消息来填充该字段,但其他字段也会变为空白。

如何解决这个问题,以便当我提交一个字段为空白的表单时,它应该显示该字段的消息,其他字段应该保存在其中输入的数据。

以下是代码:

查看页面

<form name='frm1' action="<?php echo base_url(); ?>index.php/Registrationc/add_user"  id="form1" method="post">
   <input type="text" class="form-control" style="text-transform: capitalize;" autocomplete="off" id="fname" name="fname">
   <h6 style="color:red;"><?php echo form_error('fname');?></h6>

   <input type="text" class="form-control" style="text-transform: capitalize;" autocomplete="off" id="mname" name="mname">
   <h6 style="color:red;"> <?php echo form_error('mname');?></h6>

   <input type="text" class="form-control" style="text-transform: capitalize;" autocomplete="off" id="lname" name="lname">
   <h6 style="color:red;"><?php echo form_error('lname');?></h6>

   <center>
      <input type="submit" value="Submit" class="btn btn-bricky" id="subbtn" name="submit">
   </center>
</form> 

控制器:

public function add_patient() {

    $this->form_validation->set_rules('fname', 'Firstname', 'trim|required|alpha');
    $this->form_validation->set_rules('mname', 'Middlename', 'trim|required|alpha');
    $this->form_validation->set_rules('lname', 'Lastname', 'trim|required|alpha');

    if ($this->form_validation->run() == FALSE) {
        $this->extra3();
    } else {
        $this->load->model('addpatientM');
        $fname1 = $this->input->post('fname');
        $lname1 = $this->input->post('lname');
        $mname1 = $this->input->post('mname');

        $submit = $this->addpatientM->insert_patient($fname1, $lname1, $mname1);
        if ($submit === true) {
            $this->load->library('session');
            $this->session->set_flashdata('success', 'successfully added');
        } else {
            $this->session->set_flashdata('fail', 'Opps there was some error while inserting');
        }
        redirect('Registrationc/extra3');
    }
}

1 个答案:

答案 0 :(得分:2)

您需要将set_value()回显到value-attribute中。

首先你需要加载表单 - 帮助程序:

$this->load->helper('form');

更新:实际上,如果您正在使用form_validation库并对相关字段使用验证规则,那么就无需加载{{ 1}}帮助form

然后在视图中使用set_value设置值:

set_value

Form Helper: Codeigniter documentation