phpcms调用相关文章的方法

1.PHPcms系统调用随机文章:

{pc:content action=”lists” catid=”$catid” num=”8″ order=”rand()” return=”info”}
<ul>
{loop $info $v}
<li><a href=”{$v['url']}” target=”_blank” title=”{$v['title']}”{title_style($v[style])}>{$v['title']}</a></li>
{/loop}
</ul>
{/pc}

2.PHPcms系统调用相关文章:

{get sql=”select keywords from phpcms_content where contentid=$contentid and status=’99′” return=”gt”}{/get}
{php $tempkey = get_sql_in($gt[keywords]);}
{get sql=”SELECT DISTINCT c.contentid,c.thumb,c.title,c.style,c.url FROM `phpcms_content` c,`phpcms_content_tag` t WHERE c.contentid=t.contentid and c.status=99 and c.contentid!=$contentid and c.catid=$catid AND t.tag IN($tempkey) ORDER BY c.contentid DESC” rows=”6″ return=”k”}
<tr>
<td ><span><a href=”{$k[url]}” title=”{$k[title]}”>{str_cut($k[title], 26,”)}</a></span></td>
</tr>
{/get}

原创文章,作者:MZCBC,如若转载,请注明出处:http://www.wangzhanshi.com/n/17706.html

(0)
MZCBC的头像MZCBC
上一篇 2025年1月2日 12:44:37
下一篇 2025年1月2日 12:44:39

相关推荐

发表回复

登录后才能评论