如何在组合框中保留选定的值

时间:2013-11-22 10:19:21

标签: php

如果我在该组合上选择了项目后,如何将所选值保留在组合框中。该组合已与db连接。在我选择了值之后,那么值就消失了,但我需要在组合框字段上保留该值

这个:

<td>No SBM</td>
  <td>
    :
    <select name="sbm_muat" id="sbm_muat" onchange="submit();">
     <option value="">Pilih</option>
    <?
    $sql=mysql_query("SELECT * FROM sbm_muat");
    while($res=mysql_fetch_array($sql)){
    ?>
      <option value="<? echo $res[no_sbm];?>" <? if($_POST[no_sbm]==$res[no_sbm]){ echo "selected";}?>><? echo $res[no_sbm];?></option>
    <? }?>
    </select>
    <? 
    $sbm_muat=$_POST[sbm_muat]; //dari combo

    $que=mysql_query("select * from sbm_muat, customer, truck, driver, jns_pengiriman where customer.cust_code=sbm_muat.cust_code and truck.no_pol=sbm_muat.no_pol and jns_pengiriman.kd_jns=sbm_muat.kd_jns and driver.kd_driver=sbm_muat.kd_driver and no_sbm='$sbm_muat'");
    $rq=mysql_fetch_array($que);

    $kini=date("Y-m-d");


    ?>
  </td>

1 个答案:

答案 0 :(得分:0)

查看selected属性

<select name='myComboBox'>
    <option value='myValue' selected >my value</option>
</select>