Welcome Guest, Not a member yet? Register   Sign In
Best method for sending form variables to a model ?
#9

[eluser]BobbyB[/eluser]
Hi folks,
I am trying to pass variables to a model, and tried the above solutions.
But I must be doing sth wrong.

In my controller I got:
Code:
class Freebies extends Controller {

    function Freebies()
    {
        parent::Controller();
        $this->load->helper(array('form', 'url'));
    }
    
    function index()
    {

$this->load->model('Get_freebies');

$cat = $this->input->get_post('category', TRUE);

$this->model->add($cat);

$data['freebies'] = $this->Get_freebies->getselect();

$this->load->view('freebies_view', $data);
}
}

It says "Fatal error: Call to a member function on a non-object..."
I am trying to pass a "post" variable from a form to the controller and finally to the model.

Can I pass variables to only a single function(getselect()Wink in a model or will they be passed to all the functions in the model?

Thaks in advance!


Messages In This Thread
Best method for sending form variables to a model ? - by El Forum - 07-22-2007, 03:44 PM
Best method for sending form variables to a model ? - by El Forum - 07-22-2007, 04:41 PM
Best method for sending form variables to a model ? - by El Forum - 07-23-2007, 11:14 AM
Best method for sending form variables to a model ? - by El Forum - 07-29-2008, 12:42 AM
Best method for sending form variables to a model ? - by El Forum - 07-29-2008, 02:26 AM
Best method for sending form variables to a model ? - by El Forum - 07-29-2008, 02:38 AM
Best method for sending form variables to a model ? - by El Forum - 07-29-2008, 02:49 AM
Best method for sending form variables to a model ? - by El Forum - 07-29-2008, 10:35 AM
Best method for sending form variables to a model ? - by El Forum - 11-25-2008, 12:05 PM
Best method for sending form variables to a model ? - by El Forum - 11-25-2008, 12:38 PM
Best method for sending form variables to a model ? - by El Forum - 11-25-2008, 12:50 PM
Best method for sending form variables to a model ? - by El Forum - 11-26-2008, 07:37 AM



Theme © iAndrew 2016 - Forum software by © MyBB