Forums / Install & configuration / how to add string to variable - closed
scrieler _
Monday 17 March 2008 3:00:35 am
hello! :)
how to add a string to variable like in php
<img alt="{$language}" src={$language.'gif'|ezimage}/>
i wanna have <img alt="Ger" src=/extension/ezwebin/design/ezwebin/images/Ger.gif>
André R.
Monday 17 March 2008 3:30:55 am
<img alt="{$language}" src={concat( $language, 'gif' )|ezimage} />
eZ Online Editor 5: http://projects.ez.no/ezoe || eZJSCore (Ajax): http://projects.ez.no/ezjscore || eZ Publish EE http://ez.no/eZPublish/eZ-Publish-Enterprise-Subscription @: http://twitter.com/andrerom
Monday 17 March 2008 3:36:38 am
ah, concat, big thx to u