当前位置:Gxlcms > PHP教程 > 利用Smarty实现文本隔行变色

利用Smarty实现文本隔行变色

时间:2021-07-01 10:21:17 帮助过:38人阅读

利用Smarty实现文本隔行变色

php页面

 assign('list',$rows);
$smarty -> display('1.html');

模板页面设计




{foreach from=$list item='value' key='k' name='color'}
{if $smarty.foreach.color.iteration%2== 0}

{else}

{/if}
{/foreach}
商品id 商品名称 商品logo 商品描述
{$value.brand_id} {$value.brand_name} {$value.brand_logo} {$value.brand_desc}
{$value.brand_id} {$value.brand_name} {$value.brand_logo} {$value.brand_desc}

人气教程排行