CodeIgniter:检查记录是否存在,尝试了一切

时间:2014-11-06 09:23:40

标签: php codeigniter validation record exists

我一直在为学校开展CodeIgniter项目,我需要创建一个包含用户数据的票证。如果用户尚未进入数据库,则他填写到表单中的数据将被插入到数据库中,如果他已经存在于数据库中,则只会创建一个使用其现有用户ID的票证。

我一直试图检查用户是否存在他的电子邮件,但我没有运气。用Google搜索了几个小时;试过回调,正常验证,你说出来。我似乎无法让它工作,我真的很感激一些帮助。这是我目前的代码:

控制器

public function create_ticket() {
    $this->load->library('form_validation');
    // field name, error message, validation rules
    $this->form_validation->set_rules('voornaam', 'Voornaam', 'trim|required');
    $this->form_validation->set_rules('tussenvoegsel', 'Tussenvoegsel', 'trim');
    $this->form_validation->set_rules('achternaam', 'Achternaam', 'trim|required');
    $this->form_validation->set_rules('email', 'E-mailadres', 'trim|required|valid_email');
    $this->form_validation->set_rules('geboortedatum', 'Geboortedatum', 'required');
    $this->form_validation->set_rules('postcode', 'Postcode', 'trim|required');
    $this->form_validation->set_rules('woonplaats', 'Woonplaats', 'trim|required');

    if($this->form_validation->run() == FALSE)
    {
        echo "Failed";
        $this->reservate();
    }
    else
    {
        $this->ticket_model->add_ticket($email);
        $this->reservate();

    }
}

型号:

public function add_ticket($email) {
    $query = $this->db->query("SELECT email FROM visitor
                               WHERE email = '".$email."'");
    if($query->num_rows() == 0){
        $data = array(
            'voornaam' => $this->input->post('voornaam'),
            'tussenvoegsel' => $this->input->post('tussenvoegsel'),
            'achternaam' => $this->input->post('achternaam'),
            'email' => $this->input->post('email'),
            'geboortedatum' => $this->input->post('geboortedatum'),
            'postcode' => $this->input->post('postcode'),
            'woonplaats' => $this->input->post('woonplaats')
        );
        $this->db->insert('visitor', $data);
    }
    else {
        return false;
    }

    }

查看(如果重要的话)

<?php echo validation_errors(); ?>
<h1>Ticket Bestellen</h1>
<label>
    <span>Voornaam</span>
    <input type="text" class="input_text" name="voornaam" id="voornaam"/>
</label>
<label>
    <span>Tussenvoegsel</span>
    <input type="text" class="input_text" name="tussenvoegsel" id="tussenvoegsel"/>
</label>
<label>
    <span>Achternaam</span>
    <input type="text" class="input_text" name="achternaam" id="achternaam"/>
</label>
<label>
    <span>E-mailadres</span>
    <input type="text" class="input_text" name="email" id="email"/>
</label>
<label>
    <span>Geboortedatum</span>
    <input type="text" id="geboortedatum" name="geboortedatum" placeholder="dd-mm-jjjj">
</label>
<label>
    <span>Postcode</span>
    <input type="text" class="input_text" name="postcode" id="postcode"/>
</label>
<label>
    <span>Woonplaats</span>
    <input type="text" class="input_text" name="woonplaats" id="woonplaats"/>
</label>
    <input type="submit" class="button" value="Reserveren" />
</label>

我得到的错误是:

A PHP Error was encountered

严重性:注意

消息:未定义的变量:电子邮件

文件名:controllers / booking.php

行号:42

我不知道为什么会发生这种情况,因为如果我没有将$ email变量放在那里,我会得到他错过了一个参数的错误,所以我有点困惑这里。此外,我遇到的主要问题是,尽管它给出了错误和所有内容,但无论如何他都会将记录插入到数据库中......尽管已经存在具有相同电子邮件地址的记录!

我真的不知道如何解决这个问题,所以非常感谢任何帮助。提前谢谢。

1 个答案:

答案 0 :(得分:1)

只有一个错误,将电子邮件字段数据分配给变量,然后将您的电子邮件传递给add_ticket模型。多数民众赞成:)

$email = $this->input->post("email");
$this->ticket_model->add_ticket($email);

现在修改你的模型,一点点,

function add_ticket($email) {

    // Added $this->db->escape() and limit 1 for Performance
    $query = $this->db->query("SELECT email FROM visitor
                           WHERE email = ".$this->db->escape($email)." limit 1");

   // Collect Data Array
   $data = array(
        'voornaam' => $this->input->post('voornaam'),
        'tussenvoegsel' => $this->input->post('tussenvoegsel'),
        'achternaam' => $this->input->post('achternaam'),
        'email' => $this->input->post('email'),
        'geboortedatum' => $this->input->post('geboortedatum'),
        'postcode' => $this->input->post('postcode'),
        'woonplaats' => $this->input->post('woonplaats')
    );

 // Make Code Short and Clear
 return $query->num_rows() == 0 ? $this->db->insert('visitor', $data) : false;
}