-=[ Mr. Bumblebee ]=-
_Indonesia_
<?php
# skin file
$skins = $skin->skin ( array (
'frm' => 'FORM' ,
'rep' => 'REP' ,
'none' => 'NONE' ,
) , $skinfile ) ;
# get data
$total['btn_write'] = '<a href="' . $total['cmnall'] . '&mode=write">' . $button_adminmode['btn_add'] . '</a>' ;
$repeat = '' ;
$total = $exe->qry_list ( " from tbl_{$total[table]} " .
" where keycode='{$total[code]}' {$search_query[total]} order by numid desc " ,
" numid , id , name , level , write_date , pass , last_login_date " , $total ) ;
while ( $rs = $exe->fetch ( $total['execute'] ))
{
$rs['recno'] = $total['recno'] ;
$total['recno']-- ;
$rs['write_date'] = ucf_date_format( $rs['write_date'] , 'Y.m.d' ) ;
$rs['last_login_date'] = ucf_date_format( $rs['last_login_date'] , 'Y.m.d' ) ;
if ( $rs['level'] == 99 ) $rs['checkbox'] = '<img src="/img/board_icon/secret.gif">' ;
else $rs['checkbox'] = '<input type="checkbox" name="chk_numid[]" value="' . $rs['numid'] . '" required>' ;
$rs['level'] = $define_admin_level[$rs['level']] ;
$rs['id'] = '<a href="' . $total['cmnall'] . '&mode=view&numid=' . $rs['numid'] . '">' . $rs['id'] . '</a>' ;
$rs['name'] = '<a href="' . $total['cmnall'] . '&mode=view&numid=' . $rs['numid'] . '">' . $rs['name'] . '</a>' ;
$rs['pass'] = '****' ;
$repeat.= str_foreach ( $rs , 'RS' , $skins['rep']) ;
}
if ( $total['totalcount'] < 1 ) $repeat = $skins['none'] ;
# paging
$total = $exe->paging ( $total['cmnval'] . '&mode=' . $total['mode'] , $total ) ;
# end
$result = str_foreach ( array ( 'repeat' => $repeat ) , 'INFO' , $skins['frm'] ) ;
?>
Copyright © 2017 || Recoded By Mr.Bumblebee