星期二, 2月 13, 2007

PHP表單寫法




表單名稱表單實際樣式HTML語法
文字表單<input type="text" name="page">
密碼表單<input type="password" name="password">
單選表單<input type="radio" name="password" value="男">男
複選表單一年級 二年級 <input type="checkbox" name="class" value="一年級">一年級
檔案表單<input type="file" name="file">
下拉式表單

<select name="class" size="1">

<option value="一年級">一年級

<option value="二年級">二年級

</select>
文字區塊表單<textarea cols="" rows="" name="content">嗨!</textarea>
隱藏表單<input type="hidden" name="ip" value="">
送出按鈕<input type="submit" value="送出按鈕">
清除按鈕<input type="reset" value="清除按鈕">

  • 以上這些表單比須放在 <form action="mail.php" method="post">放置表單元件</form>標籤中才能運作。例如:


    <form action="mail.php" method="post" target="_blank">

    <textarea name="content"></textarea><br>

    <input type="submit" value="送出按鈕">

    </form>


    會產生如下表單:





  • 沒有留言: