'2020/05/13'에 해당되는 글 1건

728x90

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>

 

 

 

 

 

 

블로그 이미지

Link2Me

,