1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php include_once('./_common.php');
$dba = explode(chr(10),$default['de_bank_account']);
?>
<div class="sit_option_frm_wrapper" id='bank_list_table'> <table> <caption>옵션 목록</caption> <thead> <tr class='th_tr'> <th scope="col"> <label for="bank_chk_all" class="sound_only">전체 옵션</label> <input type="checkbox" name="bank_chk_all" value="1" id="bank_chk_all"> </th> <th scope="col"> 은행명</th> <th scope="col"> 계좌번호</th> <th scope="col"> 예금주명</th> </tr> <?php for($i=0;$i<count($dba);$i++){ if(trim($dba[$i])!=''){ $dba_list = explode(chr(9),$dba[$i]); ?> <tr class='<?php if($i==0){?>basic_tr<?php } ?>'> <td class="td_chk"> <input type='checkbox' name='bank_chk[]' value='1'> </td> <td class="td_numsmall"> <?php echo bank_select_function("de_bank_name[]", $dba_list[0]);?> </td> <td class="td_numsmall"> <input type='text' name='de_bank_acc[]' value='<?php echo $dba_list[1]?>' class="frm_input"> </td> <td class="td_numsmall"> <input type='text' name='de_bank_income[]' value='<?php echo $dba_list[2]?>' class="frm_input"> </td> </tr> <?php } } ?> </table> </div>
|