뭐가 잘못 되었는지 조언좀 부탁드립니다..셀렉트박스 정보
뭐가 잘못 되었는지 조언좀 부탁드립니다..셀렉트박스본문
셀렉트 박스로 넘기는데
se_3.php에서 전혀 데이터를 못 받네요..
혹시 제가 뭘 잘못한것이 있을까요?
<select id="ba_car" name="ba_car">
<option value="">차량을 선택해 주세요</option>
<?php for ($i=0; $i<count($d); $i++) { ?>
<option value="<?=$d[$i];?>"><?=$d[$i]; ?></option>
<?}?>
</select>
<a href="#"onClick="window.open('se_3.php?ba_car=<?=$ba_car?>','new','top=500,left=500,width=500,height=500');">
<img src="/images/tablename_122.jpg" width="41" height="12" alt="" border="0" </a></p>
</td>
se_3.php에서 전혀 데이터를 못 받네요..
혹시 제가 뭘 잘못한것이 있을까요?
<select id="ba_car" name="ba_car">
<option value="">차량을 선택해 주세요</option>
<?php for ($i=0; $i<count($d); $i++) { ?>
<option value="<?=$d[$i];?>"><?=$d[$i]; ?></option>
<?}?>
</select>
<a href="#"onClick="window.open('se_3.php?ba_car=<?=$ba_car?>','new','top=500,left=500,width=500,height=500');">
<img src="/images/tablename_122.jpg" width="41" height="12" alt="" border="0" </a></p>
</td>
댓글 전체

<a href="#"onClick="window.open('se_3.php?ba_car=<?=$ba_car?>','new','top=500,left=500,width=500,height=500');">
<img src="/images/tablename_122.jpg" width="41" height="12" alt="" border="0" /></a>
PHP 는 모르는자라 패스~
<img src="/images/tablename_122.jpg" width="41" height="12" alt="" border="0" /></a>
PHP 는 모르는자라 패스~
se_3.php?ba_car=<?=$ba_car?> <--- 여기에서 $bar_car 에 select 값이 저절로 들어갈 수가 없지요
se_3.php?ba_car='+document.폼명.ba_car.value
이렇게 고쳐보세요
se_3.php?ba_car='+document.폼명.ba_car.value
이렇게 고쳐보세요