Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/02/2012, 03:02
mamo
 
Fecha de Ingreso: abril-2010
Mensajes: 18
Antigüedad: 14 años, 7 meses
Puntos: 1
estilo dinamico de smarty a php

Hola!
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=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}<class="font12">, </b>{/if}{/foreach} 
¿Me podeis ayudar?
Gracias