html 라디오 코드 질문드립니다
본문
이클립스이며 jsp 파일내에 있는 뷰 화면입니다.
<form id="boardForm" name="boardForm" method="post">
<table class="table table-bordered">
<tbody id="tbody">
<?php $radio_checked[$company] = "checked"; if(!$company) $radio_checked['intel'] = "checked"; ?>
<tr>
<td>
<input type="radio" id="intel" name="company" value="intel" <%=("intel".equals("${update.company}"))?"checked":""%>/>Intel
<input type="radio" id="amd" name="company" value="AMD"<%=("AMD".equals("${update.company}"))?"checked":""%>/>AMD
<input type="radio" id="apple" name="company" value="apple"<%=("apple".equals("${update.company}"))?"checked":""%>/>Apple</td>
</tr>
라디오 수정 페이지에서 기존에있는 데이터를 받아 그대로 화면을 출력하고싶은데 출력이 안됩니다.
<?php 인식은 안되며 html안에있는 체크박스 확인만 보고싶습니다
Processing instruction not closed. 오류만 뜨고
정말 모르겠어요 ...
나머지 텍스트 부분은 출력이 잘됩니다