Tengo un box donde se muestran las últimas palabras utilizadas en diferentes estilos de texto. Está hecho en smarty y necesito llevarmelo a otro sitio en php.
Mis nociones de php son escasas.
El código es este:
Código PHP:
{counter start=0 skip=1 print=false}
{assign var=FontMin value=9}
{assign var=FontMax value=20}
{assign var=ColorMin value=111}
{assign var=ColorMax value=999}
{foreach from=$lastKeywords_data item=it name=keys}
{if $smarty.foreach.keys.index < 30}
<span style="font-size:{$MinFontSize|rand:$MaxFontSize}px">
<a href="{$smarty.const.BASE_URL}{$smarty.const.SEARCH_MODREWRITE}/{$smarty.const.SEARCH_MODREWRITE_OP_ALLE}/0/-/0/-/1/{$it.content|sorttext|smarty_search_urlencode}.html" style="font-size:{$FontMin|rand:$FontMax}px;color:#{$ColorMin|rand:$ColorMax}"> {$it.content|truncate:29}</a></span>{/if}{if !$smarty.foreach.keys.last and $smarty.foreach.keys.index < 29}<b class="font12">, </b>{/if}{/foreach}
Gracias