Welcome Guest, Not a member yet? Register   Sign In
string parsing in between curly bracket
#4

[eluser]Nick_MyShuitings[/eluser]
Why does it have to happen in the controller like that? Is there a reason that you haven't explained yet?

If not it seems like you'd be putting an aweful lot of time into this, when you could just as easily do a foreach on the db result.

example:

Controller+Model
Code:
$this->data['items'] = $this->items_model->get_items()->result();
$this->data['item-1'] = $this->items_model->get_item_by_id(1)->row();

View
Code:
<?foreach($items as $item):?>
The item <?=$item->item_name?> costs <?=$item->item_price?>
<?endforeach;?>

OR

The item <?=$item-1->item_name .... etc

I guess I'm just not seeing how what you propose would benefit you at all, and it would be a doosy of a function having to look for your {} tags, and then pass the data inside them into a library function which would need to call the model function and then rewrite the string (ie, lots of work and processing time)


Messages In This Thread
string parsing in between curly bracket - by El Forum - 01-04-2011, 07:08 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 08:35 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 08:44 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 08:59 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 09:07 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 09:16 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 09:25 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 09:33 PM
string parsing in between curly bracket - by El Forum - 01-04-2011, 10:16 PM
string parsing in between curly bracket - by El Forum - 01-05-2011, 01:57 AM
string parsing in between curly bracket - by El Forum - 01-05-2011, 02:00 AM
string parsing in between curly bracket - by El Forum - 01-05-2011, 05:06 AM
string parsing in between curly bracket - by El Forum - 01-06-2011, 01:09 AM
string parsing in between curly bracket - by El Forum - 02-16-2011, 08:19 PM
string parsing in between curly bracket - by El Forum - 02-16-2011, 10:25 PM
string parsing in between curly bracket - by El Forum - 02-18-2011, 07:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB