Welcome Guest, Not a member yet? Register   Sign In
Recalling a field to print another one
#1

Look at this models:

PHP Code:
public function dataList($name) {
        
$db $this->load->database('default'TRUE);
        
$db    ->select('value')
            ->
where('name'$name)
 
                       ->from('setting');
        
$query_setting $db->get('');
        return 
$query_setting->row_array();
    } 

I would make sure to enter the variable name within the template and let me return the value.

For example:
In the template I write:

Code:
{$name_site}

The template return the value of string table that have for name "name_site"

My question is. How can I build the controller?

For I use smarty template engine.
Reply
#2

Someone can help me? Smile
Reply
#3

(This post was last modified: 06-14-2015, 03:13 AM by Blair2004.)

Hi,there are many way you can get to it.
You can get result as array and save keys => value into an array you are going to pass as parameter for the view files. (Sorry I'm using in a tab, so I can't write an example )
When you say ->db->get() make sure you specify the table name or nothing if it has been declared before using ->from() method
NexoPOS 2.6.2 available on CodeCanyon.
Reply
#4

It is what I thought but I also do not know how to do it right ...
Reply




Theme © iAndrew 2016 - Forum software by © MyBB