Welcome Guest, Not a member yet? Register   Sign In
form validation help
#1

[eluser]dadamssg[/eluser]
I'm going through the users guide tutorial over form validation but i wanted to add my own form validation. First of all, does the form validation code go inside the controller? second what am i doing wrong here? I just want to check to see if the username of the field was entered as Bob...if not reload the page, if so go to google. Heres my controller script
Code:
<?php

class Form extends Controller {

    function index()
    {
        $data['title'] = "My Form Title";
        $data['heading'] = "My Form Heading";

        $this->load->helper('url');
        $this->load->helper('form');
        $this->load->library('validation');
        if($_POST['usernmae'] !== "Bob")
        {
        $this->load->view('form_view', $data);
        }
        else
        {
        redirect('http://www.google.com');
        }
    }
    
}

?>
#2

[eluser]flaky[/eluser]
yes the form validation code goes inside the controller
and don't use $_POST it isn't very secure
use
Code:
$this->input->post('username');
#3

[eluser]WebsiteDuck[/eluser]
This is not an example of form validation, you can do this without the library.




Theme © iAndrew 2016 - Forum software by © MyBB