답변 감사합니다^^
기본으로 체크하게끔 하시면 될 듯 합니다. checked를 추가하면 되는데요. 예를 들면 아래와 같습니다.
<input type="checkbox" name="vehicle" value="Car" checked>
(http://www.w3schools.com/tags/att_input_checked.asp)
이렇게 답변 주셨는데요^^
저거를 어디에 추가해야 할까요?
아시다싶이 제가 너무너무 초보라서~
답변 미리 감사합니다^^
초보라서 죄송해요 ㅠ.ㅠ
html 기본을 조금 아시면 도움이 되실겁니다.
editor.php 열어보시면
<input type="checkbox" name="secret" value="true"<?php if($content->secret == 'true'):?> checked<?php endif?>>
위 코드를 아래 코드로 바꿔보세요. 항상 checked가 적용 됩니다.
<input type="checkbox" name="secret" value="true" checked>
해결 되시갈 바랄께요 ^^