디자인 수정 중 merge

This commit is contained in:
whitedot
2013-02-07 10:11:23 +09:00
10 changed files with 53 additions and 50 deletions

View File

@ -260,11 +260,11 @@ while ($entry = $tmp->read()) {
}
@ksort($amenu);
$qstr = '';
if (isset($sst)) $qstr .= '&sst='.$sst;
if (isset($sod)) $qstr .= '&sod='.$sod;
if (isset($sfl)) $qstr .= '&sfl='.$sfl;
if (isset($stx)) $qstr .= '&stx='.$stx;
if (isset($page)) $qstr .= '&page='.$page;
//$qstr = 'sst=$sst&sod=$sod&sfl=$sfl&stx=$stx&page=$page';
$arr_query = array();
if (isset($sst)) $arr_query[] = 'sst='.$sst;
if (isset($sod)) $arr_query[] = 'sod='.$sod;
if (isset($sfl)) $arr_query[] = 'sfl='.$sfl;
if (isset($stx)) $arr_query[] = 'stx='.$stx;
if (isset($page)) $arr_query[] = 'page='.$page;
$qstr = implode("&", $arr_query);
?>

View File

@ -86,9 +86,15 @@ $qstr = "$qstr&sca=$sca&page=$page&save_stx=$stx";
<td><a href='<?=$_SERVER['PHP_SELF']?>'>처음</a></td>
<td>
<select id="sfl" name="sfl">
<<<<<<< HEAD
<option value="ca_name" <?if($sfl == '분류명') echo "selected";?>>분류명</option>
<option value="ca_id" <?if($sfl == '분류코드') echo "selected";?>>분류코드</option>
<option value="ca_mb_id" <?if($sfl == '회원아이디') echo "selected";?>>회원아이디</option>
=======
<option value='ca_name' <?=get_selected($_GET['sfl'], "ca_name");?>>분류명</option>
<option value='ca_id' <?=get_selected($_GET['sfl'], "ca_id");?>>분류코드</option>
<option value='ca_mb_id' <?=get_selected($_GET['sfl'], "ca_mb_id");?>>회원아이디</option>
>>>>>>> fb8fc827f73dee204fd9c69e55e4d820b47f2234
</select>
<input type="text" id="stx" name="stx" value="<?=$stx?>">