검색대상 select option 에 seleced 넣기

This commit is contained in:
gnuboard
2013-01-15 20:41:00 +09:00
parent d4f56663fe
commit 8cd43a0ae8
2 changed files with 8 additions and 11 deletions

View File

@ -70,9 +70,9 @@ var list_delete_php = 'board_list_delete.php';
</span>
<label for="sfl">검색대상</label>
<select id="sfl" name="sfl">
<option value="bo_table" <?=option_selected($_GET['sfl'], "bo_table");?>>TABLE</option>
<option value="bo_subject" <?=option_selected($_GET['sfl'], "bo_subject");?>>제목</option>
<option value="a.gr_id" <?=option_selected($_GET['sfl'], "a.gr_id");?>>그룹ID</option>
<option value="bo_table" <?=get_selected($_GET['sfl'], "bo_subject", true);?>>TABLE</option>
<option value="bo_subject" <?=get_selected($_GET['sfl'], "bo_subject");?>>제목</option>
<option value="a.gr_id" <?=get_selected($_GET['sfl'], "a.gr_id");?>>그룹ID</option>
</select>
<input type="text" name="stx" required value="<?=$stx?>" title="검색어">
<input type="submit" class="fieldset_submit" value="검색">
@ -183,10 +183,6 @@ $pagelist = get_paging($config['cf_write_pages'], $page, $total_page, $_SERVER['
<?=$pagelist?>
</div>
<?
if (isset($stx))
echo '<script>document.fsearch.sfl.value = "'.$sfl.'";</script>';
?>
</form>
<script>

View File

@ -1620,10 +1620,11 @@ function abs_ip2long($ip='')
}
/*
function option_selected($field, $value)
function get_selected($field, $value, $first=false)
{
return ($field==$value) ? ' selected="selected"' : '';
$selected = ($field==$value) ? ' selected="selected"' : '';
if ($first && !$selected)
$selected = ($field=="") ? ' selected="selected"' : '';
return $selected;
}
*/
?>