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

關於php程序員必知必會的一些html知識

2022-06-13   來源: PHP編程 

  form表單
<form name="form" id="form" method="GET/POST" action = "提交url"  target=“_blank_parent_self_top” enctype="multipart/formdata" />
<input type=“text” name=“” id="" value="" class="" />
 <input type=“password” name=“” id="" value="" class="" />
<input type=“file” name=“” id="" value="" class="" accept=“” />上傳文件  一定要用post方法上傳   還要是enctype="multipart/formdata"   
<input type="file" accept="application/msword" ><br><br>accept屬性列表<br>
accept="application/msexcel"
accept="application/msword"
accept="application/pdf"
accept="application/poscript"
accept="application/rtf"
accept="application/xzipcompressed"
accept="audio/basic"
accept="audio/xaiff"
accept="audio/xmpeg"
accept="audio/xpn/realaudio"
accept="audio/xwaw"
accept="image/gif"
accept="image/jpeg"
accept="image/tiff"
accept="image/xmsbmp"
accept="image/xphotocd"
accept="image/xpng"
accept="image/xportablebitmap"
accept="image/xportablegreymap"
accept="image/xportablepixmap"
accept="image/xrgb"
accept="text/html"
accept="text/plain"
accept="video/quicktime"
accept="video/xmpeg"
accept="video/xmsvideo"
在這裡如果想支持多種類型的話比如金山的office和microsoft的office的不同擴展名這樣的話可以在accept裡面放置多個屬性就可以了
<form> <input type="file" name="pic" id="pic" accept="image/gif image/jpeg" /></form>
如果不限制圖像的格式可以寫為accept="image/*"同樣是可以的
php處理頁面的獲取$_FILES[NAME][name]
<input type=“image” name=“” id="" class=""  src="路徑" />具備按鈕功能哦
<input type=“radio” name=“” id="" value="" class="" checked="checked" /> 一組用相同的name
<input type=”checkbox“ name=“name[]” id="" value="" class=""  checked="checked" />  dom對象checked  = true or false
<input type=“submit” name=“” id="" value="" class="" />提交
<input type=“reset” name=“” id="" value="" class="" />重置表單
<input type=“button” name=“” id="" value="" class="" />按鈕
<input type=“hidden” name=“” id="" value="" class="" />隱藏域
<select name="" id=""  class="" >
<option value=""  selected=selected>value</option>
</select>
<select name="" id="" size=“” class="" multiple >
//菜單格式全部列出來
可以有多個選中
<option value="">value</option>
</select>
<textarea name="" id="" rows="" cols="" value="" >xxxxx</textarea>
</form>
id唯一
URL編碼中文特殊符號
url的參數如果有特殊符號?/等可以urlencode編碼獲取後用urldecode解碼


From:http://tw.wingwit.com/Article/program/PHP/201311/21314.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.