document.getElementById('test').value=document.getElementById('specialty_add').value
<?
$result = $db->get_results("SELECT * from sub_specialty where language_id=1");
$i=0;
foreach($result as $result1)
{
$sp=$result[$i]->sp_id;
$subp=$result[$i]->sub_name;
?>
if (<?=$sp?>==document.getElementById('specialty_add').value)
{
var myOption = new Option('<?=$subp?>',<?=$sp?>)
document.getElementById('test').value='<?=$subp?>';
//form1.subspecialty_add.options[form1.subspecialty_add.length]= myOption
}
<?
$i++;
}
?>
}
</script>
....ใน body มันก็ใช้ form1. ตัวแปร ค่า name และ id แต่ละ อัน มันก็ถูกทุกอย่างเลย อ่ะคับ เช็คดูหลายรอบแล้ว งงงง มาก ๆๆๆ
<select name="specialty_add" id="specialty_add" onchange="f1();">
<?php
$cats = $db->get_results("SELECT * from specialty where language_id=1 ORDER BY sp_name ASC");
foreach($cats as $c){
echo '<option value="'.$c->sp_id.'" style="color:#000000;">'.$c->sp_name.'</option>';