dousao6260 2017-01-19 11:55 采纳率: 0%
浏览 42
已采纳

如何在codeigniter中验证表单

I have a website based on codeigniter framework. I have a form on my index page and some prices of flights which are coming through my database.

here is my form:

<?php echo validation_errors(); ?>

<form action="<?php echo base_url() ?>detail/travel" method="post">

<input type="text" name="departure">
<input type="text" name="destination">
<input type="text" name="name">
<input type="text" name="cell">

</form>

so my problem is when user did not fill the whole form and submit the button, it goes into the function of "travel" which I made in my controller(detail) and show 0 results because of the error. I want that user remain on my index page with all the details until he fill the form correctly and show errors on my index page if he missed any field of my form.

here is my function "travel" that i have in my controller(detail):

function search_travel(){
                if($_POST){

                    $config = array(
                    array(
                    'field'=>'departure',
                    'label'=>'departure',
                    'rules'=>'trim|required|alpha'
                    ),
                    array(
                    'field'=>'destination',
                    'label'=>'destination',
                    'rules'=>'trim|required|alpha'
                    ),
                    array(
                    'field'=>'name',
                    'label'=>'name',
                    'rules'=>'trim|required|alpha'
                    ),
                    array(
                    'field'=>'cell',
                    'label'=>'cell no',
                    'rules'=>'trim|required|regex_match[/^[0-13]+$/]'
                    )
                );
            $this->load->library('form_validation');
            $this->load->helper(array('form', 'url'));
            $this->form_validation->set_rules($config);
            if($this->form_validation->run() == FALSE){
                $data['errors']= validation_errors();
                }   
            else{       
            $destination= $this->input->post('destination');
            $this->email->send();
            $data['var']= $this->Travel->search_travel($destination);
            $this->load->view('details',$data)
              }
            }
         } 

and my index function is:

function index(){
        $data['fares']= $this->Travel->all_fares();
        $this->load->view('index', $data);
    }
  • 写回答

1条回答 默认 最新

  • douwen1549 2017-01-19 12:37
    关注

    you need to redirect to old page and print error in view page

    <?php echo form_error('departure'); ?> 
    

    (print this in view for each input fields and below in controller)

    if ($this->form_validation->run() == FALSE) {
    
             redirect('method name that loads form');
          }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀