Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey, ive a problem with my assigned variable in smarty. I want to assigns some values to an other template, but it doesn't work correctly. The problematic line is here:

{{include file="lib/topmenu_item.tpl" onclick="load_from_php('pageBody', '{{$base_url}}index.php/datasources/grouping', 'grouping', this);" node="datasources/grouping" text="Grouping"}}

i want to add the value of the $base_url to the front of the url. How can i do that?

Ps: {{ and }} are my delimiters

share|improve this question

1 Answer

Something like this:

{{include file="lib/topmenu_item.tpl" onclick="load_from_php('pageBody', '{{' . $base_url. '}}index.php/datasources/grouping', 'grouping', this);" node="datasources/grouping" text="Grouping"}}

Use string concatenation to use the variabele in your string.

share|improve this answer
Aah, this would be so trivial under normal conditions :D Thanks! – Max Nov 2 '10 at 15:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.