Welcome Guest, Not a member yet? Register   Sign In
$ result does not shows in my view!!! HELP!!!
#7

[eluser]toopay[/eluser]
Code:
<?php defined('BASEPATH') or die('No direct access script allowed');

class Form extends CI_Controller {
    
    public function __construct()
    {
        parent::__construct();
        $this->load->model('signup_model');
    }

    public function index()
    {
        $data = array();
        $data['result'] ='';
        $this->load->library('form_validation');
        $this->load->database();
        $this->form_validation->set_rules('email', 'Email', 'required|valid_email', 'E-mail is not valid!');
        if ($this->form_validation->run() == FALSE)
        {
            $data['result'] = (validation_errors()) ? validation_errors() : '';
            $this->load->view('home', $data);
        }
        else
        {
            // call model method DB
            $this->signup_model->create();
            $data['result'] =  'Successfully created!';
            $this->load->view('home', $data);
        }
    }
}


Messages In This Thread
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 02:29 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 02:35 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 03:09 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 03:12 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 03:53 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 04:37 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 05:17 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 05:24 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 05:37 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 05:52 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 06:38 AM
$ result does not shows in my view!!! HELP!!! - by El Forum - 04-26-2011, 07:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB