Welcome Guest, Not a member yet? Register   Sign In
Form field data pulled from database
#7

[eluser]mdcode[/eluser]
Ok, I think we need an update, but first, thanks for your help on this -- and I apologize that the code keeps on changing that you don't know about... here's where I am now with the error:

Code:
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: get_customers
Filename: admin/projects_add.php
Line Number: 20

The select box call in the view is now this:
Code:
echo form_dropdown('customer', $get_customers, '');

The model is this:
Code:
function get_customers()
    {
        /* customer selection query */
        $this->db->select('customerid', 'customerName');
        $this->db->from('customers');
        $this->db->order_by('customerName');
        $this->db->get();
    }

And the controller:
Code:
function add()
    {
        $data['siteTitle'] = $this->config->item('siteTitle');
        $this->projects_model->get_customers();
        $this->template->write_view('content', 'default/admin/projects_add', $data);
        $this->template->render();
    }


Messages In This Thread
Form field data pulled from database - by El Forum - 03-16-2009, 06:54 PM
Form field data pulled from database - by El Forum - 03-16-2009, 07:09 PM
Form field data pulled from database - by El Forum - 03-16-2009, 07:28 PM
Form field data pulled from database - by El Forum - 03-16-2009, 07:49 PM
Form field data pulled from database - by El Forum - 03-16-2009, 07:55 PM
Form field data pulled from database - by El Forum - 03-16-2009, 07:56 PM
Form field data pulled from database - by El Forum - 03-16-2009, 08:04 PM
Form field data pulled from database - by El Forum - 03-16-2009, 08:12 PM
Form field data pulled from database - by El Forum - 03-16-2009, 08:24 PM
Form field data pulled from database - by El Forum - 03-16-2009, 09:23 PM
Form field data pulled from database - by El Forum - 03-16-2009, 09:58 PM
Form field data pulled from database - by El Forum - 03-16-2009, 11:17 PM
Form field data pulled from database - by El Forum - 03-17-2009, 03:14 AM
Form field data pulled from database - by El Forum - 03-17-2009, 03:30 PM
Form field data pulled from database - by El Forum - 03-18-2009, 06:17 AM
Form field data pulled from database - by El Forum - 03-18-2009, 07:58 AM
Form field data pulled from database - by El Forum - 03-18-2009, 04:17 PM
Form field data pulled from database - by El Forum - 03-18-2009, 05:38 PM
Form field data pulled from database - by El Forum - 03-18-2009, 06:51 PM
Form field data pulled from database - by El Forum - 03-18-2009, 07:10 PM
Form field data pulled from database - by El Forum - 03-18-2009, 07:22 PM
Form field data pulled from database - by El Forum - 03-18-2009, 07:44 PM
Form field data pulled from database - by El Forum - 03-18-2009, 09:00 PM
Form field data pulled from database - by El Forum - 03-18-2009, 09:54 PM



Theme © iAndrew 2016 - Forum software by © MyBB