当我点击下拉列表时,它将在数据库中显示文本框中的数据。当我尝试保存页面中的字段时,它应该保存在数据库中

时间:2015-08-09 05:38:14

标签: javascript textbox

我有onchange事件的Javascript代码,当我点击下拉列表时,它会在数据库中显示文本框中的数据。我的问题是当我尝试保存页面中的字段时。它必须保存在数据库中......在这里我得到像customerno和customename一样的保存(例如:customerno = 12345和customername = 12345)

<script>
function custname(){
    var cno=document.returnname.customerdp.value;
    document.getElementById('cnoname').value=cno;
}
</script>

PHP文件:

<label>Customer:</label>
<select name="customerdp"  onchange="custname()">
     <?php
         $sql=mysql_query( "select acc_name,acc_no from cs_details") ;
         while ($row=mysql_fetch_array($sql))
         {
     ?>        
             <option value='<?=$row['acc_no'] ?>'> <?=$row['acc_name'] ?></option>";
     <?php
         }
     ?>
</select>

0 个答案:

没有答案