一、本方法调用“阅读收费”购买后的文章方法


调用我购买的文章(show.html写法)

<?php $table= SITE_ID.'_news_buy';?>
{list action=table table=$table eid=0 cid=$id uid=$member.uid}
{$t.title}
{/list}


调用文章购买后的人数(show.html写法)

{$ci->db->where('eid=0 and cid='.$id)->count_all_results(SITE_ID.'_news_buy')}

购买的后的会员(show.html写法)

<?php $table= SITE_ID.'_news_buy';?>
{list action=table table=$table eid=0 cid=$id}
{php $m=dr_member_info($t.uid);}
会员:{$m.username}
头像:{$m.avatar_url}
{/list}


二、订单模块的方法

内容页show.html
{if $member && $ci->db->where('mid', MOD_DIR)->where('cid', $id)->where('uid', $member.uid)->count_all_results(SITE_ID.'_order_buy')}
已经购买了
显示内容字段:{$content}
{else}
没有购买
{/if}


文档最后更新时间:2017-06-13 13:01:23