Jump to content

concatenare variabili php in file tpl


Recommended Posts

ciao a tutti sto cercando di modificare una pagina tpl e devo inserire in un div un testo composto da più variabili php

il problema è che non riesco a fare il concatenamento

vi posto un esempio di come farei in un file php per farvi capire ma che in tpl non funziona

{$nome_cognome = $firstname . " " .  $lastname}

<div>

{$nome_cognome}

</div>

ho necessità che risulti in un'unica variabile ... so che potrei fare {$firstname}&nbsp;{$lastname}

Edited by overbags (see edit history)
Link to comment
Share on other sites

soluzione
 

It is always recommended that variables of this kind be generated in the controller. To generate them in the .tpl you can try like this

{assign var='nome_cognome' value="{$firstname}{' '}{$lastname}"}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...