This commit is contained in:
shim
2023-04-17 11:06:08 +09:00
parent d0b393aa97
commit 76264e09ad
4686 changed files with 552713 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
$sqlque = 'memberuid';
$sqlque .= getSearchSql('nic|name',$keyword,'','or'); // 닉네임 및 이름 검색
$orderby = 'desc';
if($_iscallpage):
$RCD = getDbArray($table['s_mbrdata'],$sqlque,'*','memberuid',$orderby,$d['search']['num'.($type=='all'?1:2)],$p);
?>
<div id="people">
<ol class="mb-0">
<?php while($_R=db_fetch_array($RCD)):?>
<?php $_MH = getDbData($table['s_mbrid'],"uid='".$_R['memberuid']."'",'*'); ?>
<li><a href="/<?php echo $_MH['id'] ?>"><?php echo $_R['nic']?>/<?php echo $_MH['id']?></a></li>
<?php endwhile?>
</ol>
</div>
<?php
endif;
$_ResultArray['num'][$_key] = getDbRows($table['s_mbrdata'],$sqlque);
?>