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

[eluser]jedd[/eluser]
[quote author="mdcode" date="1237273460"]
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, '');
[/quote]

Okay .. in very general terms, any variables you are going to use inside your view need to have appeared in your controller in a construct like this:

Code:
$data['my_variable_wot_i_like'] = "some data goes in here";

If you don't do this, then you won't get $my_variable_wot_i_like in your view.

General terms, mind. The above is true because you are passing the $data variable around, and most people use this variable name, and so on. Everyone lies, and all that.

In this instance, $data['get_customers'] is never assigned in your controller. That explains the error you're seeing. get_customers() is a function in your model, but that's not sufficient for CI to work out what you mean Wink


In any case, you need to go thru the other things I've suggested, and see if you're making some headway. I'm orf to bed, and I'm not sure who's on the next shift. Wink


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