쇼핑몰관리자: #70 title label 로 대체 완료
This commit is contained in:
@ -66,12 +66,16 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<?=$listall?>
|
||||
생성된 분류 수 <?=number_format($total_count)?>개
|
||||
</span>
|
||||
<select name="sfl" title="검색대상">
|
||||
|
||||
<label for="sfl" class="sound_only">검색대상</label>
|
||||
<select name="sfl" id="sfl">
|
||||
<option value="ca_name"<?=get_selected($_GET['sfl'], "ca_name", true);?>>분류명</option>
|
||||
<option value="ca_id"<?=get_selected($_GET['sfl'], "ca_id", true);?>>분류코드</option>
|
||||
<option value="ca_mb_id"<?=get_selected($_GET['sfl'], "ca_mb_id", true);?>>회원아이디</option>
|
||||
</select>
|
||||
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
|
||||
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?=$stx?>" id="stx" required class="required frm_input">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
|
||||
@ -145,10 +149,11 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<input type="hidden" name="ca_id[<?=$i?>]" value="<?=$row['ca_id']?>">
|
||||
<?=$row['ca_id']?>
|
||||
</td>
|
||||
<td class="td_scate"><?=$s_level?> <input type="text" name="ca_name[<?=$i?>]" value="<?=get_text($row['ca_name'])?>" id="ca_name_<?=$i?>" title="<?=$row['ca_id']?>" required class="frm_input required" size="<?=$s_level_input_size?>"></td>
|
||||
<td class="td_scate"><?=$s_level?> <input type="text" name="ca_name[<?=$i?>]" value="<?=get_text($row['ca_name'])?>" id="ca_name_<?=$i?>" required class="frm_input required" size="<?=$s_level_input_size?>"></td>
|
||||
<td class="td_scate_admin">
|
||||
<? if ($is_admin == 'super') {?>
|
||||
<input type="text" name="ca_mb_id[<?=$i?>]" size="10" maxlength="20" value="<?=$row['ca_mb_id']?>" class="frm_input" title="회원아이디">
|
||||
<label for="ca_mb_id<?=$i?>" class="sound_only">회원아이디</label>
|
||||
<input type="text" name="ca_mb_id[<?=$i?>]" value="<?=$row['ca_mb_id']?>" id="ca_mb_id<?=$i?>" class="frm_input" size="10" maxlength="20">
|
||||
<? } else { ?>
|
||||
<input type="hidden" name="ca_mb_id[<?=$i?>]" value="<?=$row['ca_mb_id']?>">
|
||||
<?=$row['ca_mb_id']?>
|
||||
|
||||
@ -84,13 +84,19 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<?=$listall?>
|
||||
전체 주문내역 <?=$total_count ?>건
|
||||
</span>
|
||||
<label><input type="checkbox" name="chk_misu" value="1" <?=$chk_misu?"checked='checked'":"";?> /> 미수금없음</label>
|
||||
|
||||
<label for="chk_misu">미수금없음</label>
|
||||
<input type="checkbox" name="chk_misu" value="1" id="chk_misu" <?=$chk_misu?"checked='checked'":"";?> />
|
||||
|
||||
<label for="sel_field" class="sound_only">검색대상</label>
|
||||
<select name="sel_field">
|
||||
<option value="od_id" <?=get_selected($sel_field, 'od_id')?>>주문번호</option>
|
||||
<option value="od_name" <?=get_selected($sel_field, 'od_name')?>>주문자</option>
|
||||
<option value="od_invoice" <?=get_selected($sel_field, 'od_invoice')?>>운송장번호</option>
|
||||
</select>
|
||||
<input type="text" name="search" value="<?=$search ?>">
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search ?>" id="search" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@ -74,6 +74,7 @@ if (isset($ev_set)) {
|
||||
<form name="flist" autocomplete="off">
|
||||
<input type="hidden" name="page" value="<?=$page?>">
|
||||
전체 이벤트 <?=$total_count ?>건
|
||||
<label for="ev_set" class="sound_only">이벤트</label>
|
||||
<select name="ev_set" id="ev_set" action="<?=$_SERVER['PHP_SELF']?>">
|
||||
<?
|
||||
// 이벤트 옵션처리
|
||||
@ -95,10 +96,11 @@ if (isset($ev_set)) {
|
||||
|
||||
<form name="flist" autocomplete="off">
|
||||
<input type="hidden" name="page" value="<?=$page?>">
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-15 ?>
|
||||
<?=$listall?>
|
||||
|
||||
<select name="sel_ca_id">
|
||||
<label for="sel_ca_id" class="sound_only">분류선택</label>
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-15 ?>
|
||||
<select name="sel_ca_id" id="sel_ca_id">
|
||||
<option value=''>전체분류</option>
|
||||
<?
|
||||
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
|
||||
@ -114,12 +116,14 @@ if (isset($ev_set)) {
|
||||
</select>
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
|
||||
<select name="sel_field">
|
||||
<label for="sel_field" class="sound_only">검색대상</label>
|
||||
<select name="sel_field" id="sel_field">
|
||||
<option value="it_name" <?=get_selected($sel_field, 'it_name')?>>상품명</option>
|
||||
<option value="a.it_id" <?=get_selected($sel_field, 'a.it_id')?>>상품코드</option>
|
||||
</select>
|
||||
|
||||
<input type="text" name="search" value="<?=$search?>" required class="frm_input required">
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search?>" id="search" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
</form>
|
||||
|
||||
@ -607,7 +607,7 @@ $pg_anchor ='<ul class="anchor">
|
||||
}
|
||||
?>
|
||||
</select><br>
|
||||
<select id='relation' size=8 style='width:250px; background-color:#F6F6F6;' onclick="relation_img(this.value, 'add_span')" ondblclick="relation_add(this);">
|
||||
<select id="relation" size=8 style='width:250px; background-color:#F6F6F6;' onclick="relation_img(this.value, 'add_span')" ondblclick="relation_add(this);">
|
||||
<?
|
||||
/*
|
||||
$sql = " select ca_id, it_id, it_name, it_amount
|
||||
|
||||
@ -93,8 +93,9 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
등록된 상품 <?=$total_count ?>건
|
||||
</span>
|
||||
|
||||
<label for="sca" class="sound_only">분류선택</label>
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-12 ?>
|
||||
<select name="sca">
|
||||
<select name="sca" id="sca">
|
||||
<option value="">전체분류</option>
|
||||
<?
|
||||
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
|
||||
@ -108,13 +109,17 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
?>
|
||||
</select>
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
<select name="sfl">
|
||||
|
||||
<label for="sfl" class="sound_only">검색대상</label>
|
||||
<select name="sfl" id="sfl">
|
||||
<option value="it_name" <?=get_selected($sfl, 'it_name')?>>상품명</option>
|
||||
<option value="it_id" <?=get_selected($sfl, 'it_id')?>>상품코드</option>
|
||||
<option value="it_maker" <?=get_selected($sfl, 'it_maker')?>>제조사</option>
|
||||
<option value="it_origin" <?=get_selected($sfl, 'it_origin')?>>원산지</option>
|
||||
<option value="it_sell_email" <?=get_selected($sfl, 'it_sell_email')?>>판매자 e-mail</option>
|
||||
</select>
|
||||
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?=$stx?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
|
||||
@ -69,8 +69,9 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
전체 문의내역 <?=$total_count ?>건
|
||||
</span>
|
||||
|
||||
<label for="sca" class="sound_only">분류선택</label>
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-12 ?>
|
||||
<select name="sca">
|
||||
<select name="sca" id="sca">
|
||||
<option value=''>전체분류</option>
|
||||
<?
|
||||
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
|
||||
@ -84,12 +85,15 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
?>
|
||||
</select>
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
<select name="sfl">
|
||||
|
||||
<label for="sfl" class="sound_only">검색대상</label>
|
||||
<select name="sfl" id="sfl">
|
||||
<option value="it_name" <?=get_selected($sfl, 'it_name')?>>상품명</option>
|
||||
<option value="a.it_id" <?=get_selected($sfl, 'a.it_id')?>>상품코드</option>
|
||||
<option value="is_name" <?=get_selected($sfl, 'is_name')?>>이름</option>
|
||||
</select>
|
||||
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong>
|
||||
<input type="text" name="stx" value="<?=$stx?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
|
||||
@ -70,8 +70,9 @@ if ($sfl || $stx) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
</span>
|
||||
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-12 ?>
|
||||
<select name="sca">
|
||||
<option value='' title="검색분류">전체분류</option>
|
||||
<label for="sca" class="sound_only">분류선택</label>
|
||||
<select name="sca" id="sca">
|
||||
<option value="">전체분류</option>
|
||||
<?
|
||||
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
|
||||
$result1 = sql_query($sql1);
|
||||
@ -85,12 +86,14 @@ if ($sfl || $stx) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
</select>
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
|
||||
<select name="sfl">
|
||||
<label for="sfl" class="sound_only">검색대상</label>
|
||||
<select name="sfl" id="sfl">
|
||||
<option value="it_name" <?=get_selected($sfl, 'it_name')?>>상품명</option>
|
||||
<option value="a.it_id" <?=get_selected($sfl, 'a.it_id')?>>상품코드</option>
|
||||
</select>
|
||||
|
||||
<input type="text" name="stx" value="<?=$stx?>" required class="frm_input required">
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?=$stx?>" id="stx" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
</fieldset>
|
||||
|
||||
@ -90,7 +90,10 @@ if ($fr_date || $to_date) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
|
||||
기간설정
|
||||
<input type="text" name="fr_date" value="<?=$fr_date?>" class="frm_input" size="8" maxlength="8"> 에서 <input type="text" name="to_date" value="<?=$to_date?>" class="frm_input" size="8" maxlength="8"> 까지
|
||||
<label for="fr_date" class="sound_only">시작일</label>
|
||||
<input type="text" name="fr_date" value="<?=$fr_date?>" class="frm_input" size="8" maxlength="8"> 에서
|
||||
<label for="to_date" class="sound_only">종료일</label>
|
||||
<input type="text" name="to_date" value="<?=$to_date?>" class="frm_input" size="8" maxlength="8"> 까지
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@ -67,7 +67,8 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
</span>
|
||||
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-15 ?>
|
||||
<select name="sel_ca_id" title="분류 검색">
|
||||
<label for="sel_ca_id" class="sound_only">분류선택</label>
|
||||
<select name="sel_ca_id" id="sel_ca_id">
|
||||
<option value=''>전체분류</option>
|
||||
<?
|
||||
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
|
||||
@ -82,11 +83,13 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
</select>
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
|
||||
<select name="sel_field" title="검색대상">
|
||||
<label for="sel_field" class="sound_only">검색대상</label>
|
||||
<select name="sel_field" id="sel_field">
|
||||
<option value="it_name" <?=get_selected($sel_field, 'it_name')?>>상품명</option>
|
||||
<option value="it_id" <?=get_selected($sel_field, 'it_id')?>>상품코드</option>
|
||||
</select>
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
|
||||
@ -93,7 +93,9 @@ if ($stx) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
전체 상품 <?=$total_count ?>개
|
||||
</span>
|
||||
|
||||
<select name="sca">
|
||||
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-22 ?>
|
||||
<label for="sca" class="sound_only">분류선택</label>
|
||||
<select name="sca" id="sca">
|
||||
<option value="">전체분류</option>
|
||||
<?
|
||||
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
|
||||
@ -106,13 +108,16 @@ if ($stx) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<? // ##### // 웹 접근성 취약 지점 끝 ?>
|
||||
|
||||
<select name="sfl" title="검색대상">
|
||||
<label for="sfl" class="sound_only">검색대상</label>
|
||||
<select name="sfl" id="sfl">
|
||||
<option value="it_name" <?=get_selected($sfl, 'it_name')?>>상품명</option>
|
||||
<option value="it_id" <?=get_selected($sfl, 'it_id')?>>상품코드</option>
|
||||
</select>
|
||||
|
||||
<input type="text" name="stx" value="<?=$stx ?>" required class="frm_input required">
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?=$stx ?>" id="stx" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
|
||||
|
||||
@ -71,7 +71,7 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌
|
||||
<option value="cd_app_no" <?=get_selected($_GET['sel_field'], 'cd_app_no')?>>승인번호</option>
|
||||
<option value="cd_opt01" <?=get_selected($_GET['sel_field'], 'cd_opt01')?>>결제자</option>
|
||||
</select>
|
||||
<label for="search" class="sound_only">검색어</label>
|
||||
<label for="search" class="sound_only">검색어 <strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search?>" id="search" required class="frm_input required" autocomplete="off">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
|
||||
@ -438,7 +438,7 @@ $pg_anchor = '<ul class="anchor">
|
||||
{
|
||||
// 은행계좌를 배열로 만든후
|
||||
$str = explode("\n", $default['de_bank_account']);
|
||||
$bank_account = '<select name="od_bank_account" id="od_bank_account">'.PHP_EOL;
|
||||
$bank_account .= '<select name="od_bank_account" id="od_bank_account">'.PHP_EOL;
|
||||
$bank_account .= '<option value="">선택하십시오</option>'.PHP_EOL;
|
||||
for ($i=0; $i<count($str); $i++) {
|
||||
$str[$i] = str_replace("\r", "", $str[$i]);
|
||||
@ -454,7 +454,7 @@ $pg_anchor = '<ul class="anchor">
|
||||
|
||||
<? if ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '가상계좌') { ?>
|
||||
<tr>
|
||||
<th scope="row">계좌번호</th>
|
||||
<th scope="row"><label for="od_bank_account">계좌번호</label></th>
|
||||
<td><?=$bank_account?></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
||||
@ -97,7 +97,9 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<?=$listall?>
|
||||
전체 주문내역 <?=$total_count ?>건
|
||||
</span>
|
||||
<select name="sel_field" title="검색대상">
|
||||
|
||||
<label for="sel_field" class="sound_only">검색대상</label>
|
||||
<select name="sel_field" id="sel_field">
|
||||
<option value="od_id" <?=get_selected($sel_field, 'od_id')?>>주문번호</option>
|
||||
<option value="mb_id" <?=get_selected($sel_field, 'mb_id')?>>회원 ID</option>
|
||||
<option value="od_name" <?=get_selected($sel_field, 'od_name')?>>주문자</option>
|
||||
@ -109,7 +111,9 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<option value="od_deposit_name" <?=get_selected($sel_field, 'od_deposit_name')?>>입금자</option>
|
||||
<option value="od_invoice" <?=get_selected($sel_field, 'od_invoice')?>>운송장번호</option>
|
||||
</select>
|
||||
<input type="text" name="search" value="<?=$search?>" title="검색어" required class="required frm_input" autocomplete="off">
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search?>" id="search" required class="required frm_input" autocomplete="off">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@ -88,7 +88,9 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<?=$listall?>
|
||||
전체 주문내역 <?=$total_count ?>건
|
||||
</span>
|
||||
<select name="sel_field" title="검색대상">
|
||||
|
||||
<label for="sel_field" class="sound_only">검색대상</label>
|
||||
<select name="sel_field" id="sel_field">
|
||||
<option value="od_id" <?=get_selected($sel_field, 'od_id')?>>주문번호</option>
|
||||
<option value="mb_id" <?=get_selected($sel_field, 'mb_id')?>>회원 ID</option>
|
||||
<option value="od_name" <?=get_selected($sel_field, 'od_name')?>>주문자</option>
|
||||
@ -96,7 +98,9 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<option value="od_deposit_name" <?=get_selected($sel_field, 'od_deposit_name')?>>입금자</option>
|
||||
<option value="od_invoice" <?=get_selected($sel_field, 'od_invoice')?>>운송장번호</option>
|
||||
</select>
|
||||
<input type="text" name="search" value="<?=$search?>" title="검색어" autocomplete="off">
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search?>" id="search" autocomplete="off">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@ -113,7 +113,8 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<li><a href="<?=$_SERVER['PHP_SELF'].'?sort1='.$sort1.'&sort2='.$sort2.'&sel_field=ct_status&search='.urlencode("품절")?>">품절</a></li>
|
||||
</ul>
|
||||
|
||||
<select name="sel_field" title="검색대상">
|
||||
<label for="sel_field" class="sound_only">검색대상</label>
|
||||
<select name="sel_field" id="sel_field">
|
||||
<option value="od_id" <?=get_selected($sel_field, 'od_id')?>>주문번호</option>
|
||||
<option value="od_name" <?=get_selected($sel_field, 'od_name')?>>주문자</option>
|
||||
<option value="mb_id" <?=get_selected($sel_field, 'mb_id')?>>회원 ID</option>
|
||||
@ -122,7 +123,8 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<option value="c.ca_id" <?=get_selected($sel_field, 'c.ca_id')?>>분류코드</option>
|
||||
<option value="ct_status" <?=get_selected($sel_field, 'ct_status')?>>상태</option>
|
||||
</select>
|
||||
<input type="text" name="search" value="<?=$search ?>" title="검색어" required class="required frm_input" autocomplete="off">
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?=$search ?>" id="search" required class="required frm_input" autocomplete="off">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</fieldset>
|
||||
</form>
|
||||
@ -164,10 +166,6 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
<?
|
||||
for ($i=0; $i<count($lines); $i++) {
|
||||
|
||||
$od_deposit_name = "";
|
||||
if ($lines[$i]['od_deposit_name'] != "")
|
||||
$od_deposit_name = "title='입금자 : }'";
|
||||
|
||||
$href = $_SERVER['PHP_SELF'].'?sort1='.$sort1.'&sort2='.$sort2.'&sel_field=c.it_id&search='.$lines[$i]['it_id'];
|
||||
$it_name = '<a href="'.$href.'">'.cut_str($lines[$i]['it_name'],35).'</a><br>';
|
||||
$it_name .= print_item_options($lines[$i]['it_id'], $lines[$i]['it_opt1'], $lines[$i]['it_opt2'], $lines[$i]['it_opt3'], $lines[$i]['it_opt4'], $lines[$i]['it_opt5'], $lines[$i]['it_opt6']);
|
||||
|
||||
Reference in New Issue
Block a user