表單元素是允許用戶在表單中(比如:文本域、下拉列表、單選框、復(fù)選框等等)輸入信息的元素。
表單使用表單標(biāo)簽( form )定義。
form action= script.php method= post /form
就PHP 而言,form標(biāo)簽最重要的屬性是action,它指定將把表單數(shù)據(jù)發(fā)送到哪個(gè)頁(yè)面,為空就是提交給含這個(gè)表單的這頁(yè),也就是當(dāng)前頁(yè);
第二個(gè)屬性是method,它是指定如何把數(shù)據(jù)發(fā)送到處理頁(yè)面,兩個(gè)選項(xiàng)(get和post)指示要使用的HTTP方法。
method方法選擇:
get方法是把提交的數(shù)據(jù)通過一系列追加到URL后面的(名 - 值)對(duì)發(fā)送到接收頁(yè)面。例如:
http://www.example.com/script.php?name=Homer gender=M age=35
不幸的是,通過get傳輸?shù)臄?shù)據(jù)量有限,并且它不怎么安全(因?yàn)閿?shù)據(jù)是可見的)。
一般來講,get 用于請(qǐng)求信息,比如數(shù)據(jù)庫(kù)中的特定記錄或者搜索的結(jié)果(搜索幾乎總是使用get )。
當(dāng)需要采取一個(gè)動(dòng)作時(shí)(比如在更新數(shù)據(jù)庫(kù)記錄或者發(fā)送電子郵件時(shí)),就使用post方法。
由于這些原因,我一般使用post,如果出現(xiàn)例外情況,我會(huì)另外指出。
下面我們就來創(chuàng)建一個(gè)簡(jiǎn)單的表單吧,由于這個(gè)文件中沒有含有php代碼,所以我文件保存為(.html)后綴,當(dāng)然也可以用(.php)后綴。
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns= http://www.w3.org/1999/xhtml head meta http-equiv= Content-Type content= text/html; charset=utf-8 / title 簡(jiǎn)單的HTML表單 /title style type= text/css label {font-weight: bold;color: #300ACC;} /style /head body form action= demo1.php method= post fieldset legend 在下面的表格輸入您的信息: /legend p label 姓名: input type= text name= name size= 20 maxlength= 40 / /label /p p label 郵箱地址: input type= text name= email size= 40 maxlength= 60 / /label /p p label for= gender 性別: /label input type= radio name= gender value= M / 男 input type= radio name= gender value= F / 女 /p p label 年齡: select name= age option value= 0-29 30歲以下 /option option value= 30-60 30歲 到 60歲 之間 /option option value= 60+ 60歲以上 /option /select /label /p p label 評(píng)論: textarea name= comments rows= 3 cols= 40 /textarea /label /p /fieldset p align= center input type= submit name= submit value= 提交信息 / /p /form /body /html 這樣的表單就弄好了,最后的效果圖如下:

相關(guān)推薦:
什么是PHP表單和表單的創(chuàng)建
php表單如何構(gòu)建?
以上就是php表單是什么?php表單的創(chuàng)建方式(實(shí)例)的詳細(xì)內(nèi)容,PHP教程
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。
新聞熱點(diǎn)
疑難解答
圖片精選