37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* @var string $keyword
|
|
*/
|
|
include_once "./_common.php";
|
|
|
|
if (!$is_member) {
|
|
echo "<ul><li class='no-data'>회원만 검색 가능합니다.</li></ul>";
|
|
} else {
|
|
if ($keyword == "") {
|
|
echo "<ul><li class='no-data'>키워드를 입력해 주시길 바랍니다.</li></ul>";
|
|
} else {
|
|
echo "<ul>";
|
|
|
|
if ($option == 'user') {
|
|
$sql = " select ch_thumb, ch_name, ch_id, mb_id from {$g5['character_table']} where ch_name like '%{$keyword}%' and ch_state = '승인' and mb_id != '{$config['cf_admin']}' and ch_type = 'main' order by ch_name asc";
|
|
} else {
|
|
$sql = " select ch_thumb, ch_name, ch_id, mb_id from {$g5['character_table']} where ch_name like '%{$keyword}%' and ch_state = '승인' order by ch_name asc";
|
|
}
|
|
|
|
$result = sql_query($sql);
|
|
for ($i = 0; $row = sql_fetch_array($result); $i++) {
|
|
?>
|
|
<li>
|
|
<a href="#"
|
|
onclick="select_item('<?= $list_obj ?>', '<?= $input_obj ?>', '<?= $row['ch_name'] ?>', '<?= $output_obj ?>', '<?= $row['ch_id'] ?>'); return false;">
|
|
<strong class="point">[<?= $row['ch_name'] ?>]</strong> <?= get_member_name($row['mb_id']) ?>
|
|
</a>
|
|
</li>
|
|
<?php
|
|
}
|
|
if ($i == 0) {
|
|
echo "<li class='no-data' style='line-height:1.2; padding:5px 5px 15px; font-size:11px; word-break:keep-all;'>[ {$keyword} ]에 대한 검색결과가 존재하지 않습니다.</li>";
|
|
}
|
|
echo "</ul>";
|
|
}
|
|
}
|