熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

php selectradio和checkbox默認選擇的實現方法詳解

2022-06-13   來源: PHP編程 
本篇文章是對php selectradio和checkbox默認選擇的實現方法進行了詳細的分析介紹需要的朋友參考下  

  這是擴展yibing的select默認選擇的實現方法

復制代碼 代碼如下:
<select name="wuyeleixing" size="">
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">住宅</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">辦公室</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">營業房</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">廠房</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">倉庫</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">地塊</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">綜合樓</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">農牧場</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">商住樓</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">賓館酒樓</option>
<option <?php if($myrow[wuyeleixing]==) echo("selected");?> value="">校捨</option>
</select>

  
radio單選框的默認選擇實現

復制代碼 代碼如下:
<input type="radio" name="dishu" value="" <?php if($myrow[dishu]==) echo("checked");?>>空白
<input type="radio" name="dishu" value="" <?php if($myrow[dishu]==) echo("checked");?>>出讓
<input type="radio" name="dishu" value="" <?php if($myrow[dishu]==) echo("checked");?>>劃撥
<input type="radio" name="dishu" value="" <?php if($myrow[dishu]==) echo("checked");?>>集體

  
checkbox 復選框的默認選擇實現

復制代碼 代碼如下:
<input name="fujia_jiaju" type="checkbox" value="jiaju" <?php if($myrow[fujia_jiaju]) echo("checked");?>></font></strong>家 具</td>
<td width="" height=""><strong><font color="#" face="楷體_GB"><input
name="fujia_chuju" type="checkbox" value="chuju" <?php if($myrow[fujia_chuju]) echo("checked");?>></font></strong>廚 具</td>
<td width="" height=""><strong><font color="#" face="楷體_GB"><input
name="fujia_woju" type="checkbox" value="woju" <?php if($myrow[fujia_woju]) echo("checked");?>></font></strong>臥 具</td>
<td width="" height=""><strong><font color="#" face="楷體_GB"><input
name="fujia_TV" type="checkbox" value="TV" <?php if($myrow[fujia_TV]) echo("checked");?>></font></strong>電視機
From:http://tw.wingwit.com/Article/program/PHP/201311/20927.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.