리스트 tr_bg 처리 코드 간소화

This commit is contained in:
chicpro
2013-11-07 10:43:46 +09:00
parent 19038f9878
commit 8cc75650ac
20 changed files with 40 additions and 41 deletions

View File

@ -58,9 +58,9 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
<tbody>
<?php
for($i=0; $row=sql_fetch_array($result); $i++) {
$tr_bg = $i%2 ? 'class="tr_bg1"' : 'class="tr_bg0"';
$tr_bg = 'tr_bg'.($i%2);
?>
<tr<?php echo ' '.$tr_bg; ?>>
<tr class="<?php echo $tr_bg; ?>">
<td class="td_chk">
<input type="hidden" id="sc_id_<?php echo $i; ?>" name="sc_id[<?php echo $i; ?>]" value="<?php echo $row['sc_id']; ?>">
<input type="checkbox" id="chk_<?php echo $i; ?>" name="chk[]" value="1" title="내역선택">