帝國CMS6.0版新增了針對(duì)會(huì)員空間信息調(diào)用的“靈動(dòng)標(biāo)簽函數(shù)”,使會(huì)員空間模板增加信息調(diào)用更簡(jiǎn)單,不用寫sql查詢執(zhí)行代碼。
空間的“靈動(dòng)標(biāo)簽函數(shù)”語法基本同靈動(dòng)標(biāo)簽,大家回顧下靈動(dòng)標(biāo)簽語法:
點(diǎn)擊這里查看:http://www.phome.net/doc/ecmsedu/base/mbzz/html/sysbq.html#eloop
空間的“靈動(dòng)標(biāo)簽函數(shù)”具體語法為如下:
<?php $spacesql=espace_eloop(欄目ID,顯示條數(shù),操作類型,只顯示有標(biāo)題圖片); while($spacer=$empire->fetch($spacesql)) { $spacesr=espace_eloop_sp($spacer); ?> 模板代碼內(nèi)容 <? } ?> |
<table width="380" border="0" cellpadding="3" cellspacing="1" bgcolor="#96C8F1" align="center"> <tr> <td background="template/default/images/bg_title_sider.gif"><b>最新新聞</b></td> </tr> <tr> <td bgcolor="#FFFFFF"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <?php $spacesql=espace_eloop(2,5,0,0); while($spacer=$empire->fetch($spacesql)) { $spacesr=espace_eloop_sp($spacer); ?> <tr> <td height="25"> <img src="template/default/images/li.gif" width="15" height="10"><a href="<?=$spacesr[titleurl]?>" target="_blank"><?=$spacer[title]?></a> (<?=date('Y-m-d',$spacer[newstime])?>) </td> </tr> <? } ?> </table> </td> </tr> </table> |
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#96C8F1" align="center"> <tr> <td background="template/default/images/bg_title_sider.gif"><b>圖片新聞</b></td> </tr> <tr> <td bgcolor="#FFFFFF"> <table width="100%" border="0" cellspacing="1" cellpadding="3"> <tr> <?php $spacesql=espace_eloop(2,4,0,1); while($spacer=$empire->fetch($spacesql)) { $spacesr=espace_eloop_sp($spacer); ?> <td height="25" align="center"> <a href="<?=$spacesr[titleurl]?>" target="_blank"><img src="<?=$spacer[titlepic]?>" width="108" height="72" border="0"></a> <br> <a href="<?=$spacesr[titleurl]?>" target="_blank"><?=esub($spacer[title],20)?></a> </td> <? } ?> </tr> </table> </td> </tr> </table> |
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 帝國CMS 6.0功能解密之會(huì)員空間信息標(biāo)簽調(diào)用