MDB 템플릿을 사용하다가 정보 찾는데 걸리는 시간을 절약하기 위해 적어둔다.
bootstrap4 기반으로 만들어진 템플릿이라 bootstrap4 용일 수도 있다.
글자 굵은 글씨
<b class="font-weight-bold">'.$R['jiAddress'].' '.$R['aDong'].$bldNM).'</b>
글자 왼쪽 정렬
<td class="text-left"><?php echo $R['content'];?></td>
빨간 글씨
<td class="text-danger"><?php echo $R['content'];?></td>
<?php if($mtype==3):?><td><?php echo $R['d_regis'];?></td><?php endif;?>
<tr>
<th class="text-left" style='width:80pt'>인입구배선</th>
<td class="text-left" style='width:85%'>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input" name="wireEnt" id="wireEnt1" value="1" <?php if(!isset($C['wireEnt'])):?>checked<?php elseif($C['wireEnt'] == "1"):?>checked<?php else:?><?php endif?>>
<label class="form-check-label" for="wireEnt1">O</label>
</div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input" name="wireEnt" id="wireEnt2" value="2" <?php if(!isset($C['wireEnt'])):?><?php elseif($C['wireEnt'] == "2"):?>checked<?php else:?><?php endif?>>
<label class="form-check-label" for="wireEnt2">X</label>
</div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input" name="wireEnt" id="wireEnt3" value="3" <?php if(!isset($C['wireEnt'])):?><?php elseif($C['wireEnt'] == "3"):?>checked<?php else:?><?php endif?>>
<label class="form-check-label" for="wireEnt3">△</label>
</div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input" name="wireEnt" id="wireEnt4" value="4" <?php if(!isset($C['wireEnt'])):?><?php elseif($C['wireEnt'] == "4"):?>checked<?php else:?><?php endif?>>
<label class="form-check-label" for="wireEnt4">해당없음</label>
</div>
</td>
</tr>
'Web 프로그램 > MDB' 카테고리의 다른 글
MDB4 Chart DB 연동 (0) | 2022.04.25 |
---|---|
MDB4 select (0) | 2022.02.12 |
MDB 기반 게시판 만들기 - 6 DBDataClass (0) | 2019.08.29 |
MDB기반 게시판 만들기 - 5 (파일 삭제 처리) (0) | 2019.08.07 |
MDB 기반 게시판 만들기 - 4 (게시판 보기 및 댓글 등록) (1) | 2019.08.07 |