검색결과 스킨
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
<?
|
<?
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
?>
|
||||||
인기검색어 : 2
|
인기검색어 :
|
||||||
<?
|
<?
|
||||||
for ($i=0; $i<count($list); $i++) {
|
for ($i=0; $i<count($list); $i++) {
|
||||||
echo "<a href='$g4[bbs_path]/search.php?sfl=wr_subject&sop=and&stx=".urlencode($list[$i][pp_word])."'>{$list[$i][pp_word]}</a> ";
|
echo "<a href='$g4[bbs_path]/search.php?sfl=wr_subject&sop=and&stx=".urlencode($list[$i][pp_word])."'>{$list[$i][pp_word]}</a> ";
|
||||||
|
|||||||
@ -1,30 +1,27 @@
|
|||||||
<?
|
<?
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
?>
|
||||||
2
|
|
||||||
<form name=fsearch method=get onsubmit="return fsearch_submit(this);" style="margin:0px;">
|
|
||||||
<table align=center width=95% cellpadding=2 cellspacing=0>
|
|
||||||
<input type="hidden" name="srows" value="<?=$srows?>">
|
|
||||||
<tr>
|
|
||||||
<td align=center>
|
|
||||||
<?=$group_select?>
|
|
||||||
<script type="text/javascript">document.getElementById("gr_id").value = "<?=$gr_id?>";</script>
|
|
||||||
|
|
||||||
<select name=sfl class=select>
|
<form name="fsearch" method="get" onsubmit="return fsearch_submit(this);">
|
||||||
<option value="wr_subject||wr_content">제목+내용</option>
|
<input type="hidden" name="srows" value="<?=$srows?>">
|
||||||
<option value="wr_subject">제목</option>
|
<fieldset>
|
||||||
<option value="wr_content">내용</option>
|
<?=$group_select?>
|
||||||
<option value="mb_id">회원아이디</option>
|
<script>document.getElementById("gr_id").value = "<?=$gr_id?>";</script>
|
||||||
<option value="wr_name">이름</option>
|
|
||||||
|
<select name="sfl">
|
||||||
|
<option value="wr_subject||wr_content">제목+내용</option>
|
||||||
|
<option value="wr_subject">제목</option>
|
||||||
|
<option value="wr_content">내용</option>
|
||||||
|
<option value="mb_id">회원아이디</option>
|
||||||
|
<option value="wr_name">이름</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<input type=text name=stx class=ed maxlength=20 required itemname="검색어" value='<?=$text_stx?>'>
|
<input type="text" name="stx" value="<?=$text_stx?>" maxlength="20" required>
|
||||||
|
|
||||||
<input type=submit value=" 검 색 ">
|
<input type="submit" value="검색">
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
document.fsearch.sfl.value = "<?=$sfl?>";
|
document.fsearch.sfl.value = "<?=$sfl?>";
|
||||||
|
|
||||||
function fsearch_submit(f)
|
function fsearch_submit(f)
|
||||||
{
|
{
|
||||||
if (f.stx.value.length < 2) {
|
if (f.stx.value.length < 2) {
|
||||||
@ -52,69 +49,58 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</td>
|
<input type="radio" id="sop_or" name="sop" value="or" <?=($sop == "or") ? "checked" : "";?>> <label for="sop_or">OR</label>
|
||||||
</tr>
|
<input type="radio" name="sop_and" name="sop" value="and" <?=($sop == "and") ? "checked" : "";?>> <label for="sop_and">AND</label>
|
||||||
<tr>
|
</fieldset>
|
||||||
<td align=center>
|
|
||||||
연산자
|
|
||||||
<input type="radio" name="sop" value="or" <?=($sop == "or") ? "checked" : "";?>>OR
|
|
||||||
<input type="radio" name="sop" value="and" <?=($sop == "and") ? "checked" : "";?>>AND
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</form>
|
</form>
|
||||||
<p>
|
|
||||||
|
|
||||||
|
<?
|
||||||
|
if ($stx) {
|
||||||
|
echo "검색된 게시판 리스트 (".$board_count."개의 게시판, ".number_format($total_count)."개의 게시글, ".number_format($page)."/".number_format($total_page)." 페이지)";
|
||||||
|
if ($board_count) {
|
||||||
|
echo "<ul>";
|
||||||
|
if ($onetable)
|
||||||
|
echo "<li><a href=\"?".$search_query."&gr_id=".$gr_id."\">전체게시판 검색</a>";
|
||||||
|
echo $str_board_list;
|
||||||
|
echo "</ul>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
echo "<p>검색된 자료가 하나도 없습니다.</p>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
<table align=center width=95% cellpadding=2 cellspacing=0>
|
<?
|
||||||
<tr>
|
$k=0;
|
||||||
<td style='word-break:break-all;'>
|
for ($idx=$table_index, $k=0; $idx<count($search_table) && $k<$rows; $idx++) {
|
||||||
|
$comment_href = "";
|
||||||
<?
|
?>
|
||||||
if ($stx)
|
<ul>
|
||||||
{
|
<li>
|
||||||
echo "<ul type=circle><li><b>검색된 게시판 리스트</b> (<b>{$board_count}</b>개의 게시판, <b>".number_format($total_count)."</b>개의 게시글, <b>".number_format($page)."/".number_format($total_page)."</b> 페이지)</ul>";
|
<a href="./board.php?bo_table=<?=$search_table[$idx]?>&<?=$search_query?>"><?=$bo_subject[$idx]?></a>에서의 검색결과
|
||||||
if ($board_count)
|
<?
|
||||||
|
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++) {
|
||||||
|
if ($list[$idx][$i][wr_is_comment])
|
||||||
{
|
{
|
||||||
echo "<ul><ul type=square style='line-height:130%;'>";
|
echo "댓글 ";
|
||||||
if ($onetable)
|
$comment_href = "#c_".$list[$idx][$i][wr_id];
|
||||||
echo "<li><a href='?$search_query&gr_id=$gr_id'>전체게시판 검색</a>";
|
|
||||||
echo $str_board_list;
|
|
||||||
echo "</ul></ul>";
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
echo "<ul style='line-height:130%;'><li>검색된 자료가 하나도 없습니다.</ul>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="<?=$list[$idx][$i][href]?><?=$comment_href?>"><?=$list[$idx][$i][subject]?></a>
|
||||||
|
<a href="<?=$list[$idx][$i][href]?><?=$comment_href?>" target="_blank">새창</a>
|
||||||
|
<p><?=$list[$idx][$i][content]?></p>
|
||||||
|
<?=$list[$idx][$i][wr_datetime]?>
|
||||||
|
<?=$list[$idx][$i][name]?>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<? } ?>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<? } ?>
|
||||||
|
|
||||||
|
<div id="pg">
|
||||||
<?
|
<?=$write_pages?>
|
||||||
$k=0;
|
</div>
|
||||||
for ($idx=$table_index, $k=0; $idx<count($search_table) && $k<$rows; $idx++)
|
|
||||||
{
|
|
||||||
echo "<ul type=circle><li><b><a href='./board.php?bo_table={$search_table[$idx]}&{$search_query}'><u>{$bo_subject[$idx]}</u></a>에서의 검색결과</b></ul>";
|
|
||||||
$comment_href = "";
|
|
||||||
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++)
|
|
||||||
{
|
|
||||||
echo "<ul><ul type=square><li style='line-height:130%;'>";
|
|
||||||
if ($list[$idx][$i][wr_is_comment])
|
|
||||||
{
|
|
||||||
echo "<font color=999999>[코멘트]</font> ";
|
|
||||||
$comment_href = "#c_".$list[$idx][$i][wr_id];
|
|
||||||
}
|
|
||||||
echo "<a href='{$list[$idx][$i][href]}{$comment_href}'><u>";
|
|
||||||
echo $list[$idx][$i][subject];
|
|
||||||
echo "</u></a> [<a href='{$list[$idx][$i][href]}{$comment_href}' target=_blank>새창</a>]<br>";
|
|
||||||
echo $list[$idx][$i][content];
|
|
||||||
echo "<br><font color=#999999>{$list[$idx][$i][wr_datetime]}</font> ";
|
|
||||||
echo $list[$idx][$i][name];
|
|
||||||
echo "</ul></ul>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
<p align=center><?=$write_pages?>
|
|
||||||
|
|
||||||
</td></tr></table>
|
|
||||||
Reference in New Issue
Block a user