PHP表單TextField

2018-02-22 16:40 更新

PHP教程 - PHP表單TextField

文本輸入字段允許用戶輸入單行文本。

值屬性

您可以選擇使用 value 屬性使用初始值預填充字段。要將其留空,請指定一個值屬性的空字符串,或將屬性全部保留。

<label for="textField">A text input field</label> 
<input type="text" name="textField" id="textField" value="" /> 

實施例1

以下代碼用于index.htm文件,它有一個文本字段和提交按鈕。

<html>
<body>
   <form action="index.php" method="get">
      <input type="text" name="user" />
      <input type="submit" value="hit it!" />
    </form>
</body>
</html>

將以下腳本命名為 index.php ,并將其放在同一個文件夾中上面的 index.htm 文件。 它通過使用從文本字段接受值字段名稱 user 。


<?php
  print "Welcome <b>" . $_GET ["user"] . "</b><br/>";
?>


實施例2

一個PHP號碼猜測腳本


<?php// ww  w .jav a  2s  .  c o m
$num_to_guess = 42;
$message = "";
if ( ! isset( $_POST["guess"] ) ) {
   $message = "Welcome!";
} else if ( $_POST["guess"] > $num_to_guess ) {
   $message = $_POST["guess"]." is too big!";
} else if ( $_POST["guess"] < $num_to_guess ) {
   $message = $_POST["guess"]." is too small!";
} else { 
   $message = "Well done!";
}
?>
<html>
<body>
  <h1> 
     <?php print $message ?> 
  </h1>
  <form method="post" action="<?php print $_SERVER["PHP_SELF"]?>">
  <p>
     Type your guess here: 
     <input type="text" name="guess" />
     <input type="submit" value="submit" />
  </p>
  </form>
</body>
</html>


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號