#381 전체:html5 유효성 검사 완료

This commit is contained in:
rollydream
2013-03-14 15:35:45 +09:00
parent 607b6568f5
commit d0410b30a9
9 changed files with 17 additions and 17 deletions

View File

@ -837,6 +837,7 @@ function get_group_select($name, $selected='', $event='')
$result = sql_query($sql);
$str = "<select id=\"$name\" name=\"$name\" $event>\n";
for ($i=0; $row=sql_fetch_array($result); $i++) {
if ($i == 0) $str .= "<option value=\"\">선택</option>";
$str .= option_selected($row['gr_id'], $selected, $row['gr_subject']);
}
$str .= "</select>";