Heim  >  Artikel  >  php教程  >  Destoon实现多表查询示例,Destoon实现示例

Destoon实现多表查询示例,Destoon实现示例

WBOY
WBOYOriginal
2016-06-13 09:26:482370Durchsuche

Destoon实现多表查询示例,Destoon实现示例

本文示例可实现Destoon多表查询。在进行destoon二次开发的时候有很高的实用价值。具体实现方法如下:

1.模板文件部分

具体代码如下:

<!--{php $tags=tag("table=destoon_member m,destoon_company c&prefix=&condition=m.userid=c.userid and c.groupid=17&pagesize=10&template=null");}--> 
{loop $tags $v} 
<li> 
<div class="dk1bb_t"><a href="#" rel="external nofollow" rel="external nofollow" ><img  src="{$v['thumb']}" border="0"    style="max-width:90%"  style="max-width:90%" / alt="Destoon实现多表查询示例,Destoon实现示例" ></a></div><div class="dk1bb_b"><a href="#" rel="external nofollow" rel="external nofollow" >{dsubstr($v['company'],18)}</a></div> 
</li> 
{/loop}

2.php代码部分

实现destoon多表查询代码如下:

function getSell($uname){ 
 global $db; 
 $lists = array(); 
 $result = $db->query("SELECT * FROM {$db->pre}sell WHERE username='$uname' limit 0,6"); 
 while($r = $db->fetch_array($result)) { 
 $lists[] = $r; 
 } 
 return $lists; 
}

希望本文示例对大家的destoon开发有一定的帮助作用。

destoon双表查询问题教:怎查询文章内容,并保持格式不变

{loop $tags $k $t}

{$t[title]}{$t[content]}{/loop}
 

destoon管理员紧急助,标签说明调用多表的方法


 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn