El Forum
01-07-2010, 07:53 AM
[eluser]pnutz[/eluser]
Hi !
Kind of a newbie question :-)
I've been using codeigniter for some time now and am really enjoying the overview you get when you code your pages.
I currently have a page with a MySQL query on it.
Withing that query, I pass an ID value to a custom library function.
$this->customlib->function($row->id);
The function does it's job correctly... (running a new query and fetching the needed values).
Problem is... how do I pass the newly aquired data from my custom function to the previous function...
a return would not work as this would only pass one value I suppose, and I need a an array with MySQL data coming back to me...
Hi !
Kind of a newbie question :-)
I've been using codeigniter for some time now and am really enjoying the overview you get when you code your pages.
I currently have a page with a MySQL query on it.
Withing that query, I pass an ID value to a custom library function.
$this->customlib->function($row->id);
The function does it's job correctly... (running a new query and fetching the needed values).
Problem is... how do I pass the newly aquired data from my custom function to the previous function...
a return would not work as this would only pass one value I suppose, and I need a an array with MySQL data coming back to me...