PHP 表單提交去除沒必要要的字符

當用戶提交表單時,作到如下兩件事是很是有必要:php

  1. 使用 PHP trim() 函數去除用戶輸入數據中沒必要要的字符 (如:空格,tab,換行)。html

  2. 使用PHP stripslashes()函數去除用戶輸入數據中的反斜槓 (\)web

     

 

<!DOCTYPE HTML> 
<html>
<head>
</head>
<body> 
<?php
// define variables and set to empty values
$name = $email = $gender = $comment = $website = "";
if ($_SERVER["REQUEST_METHOD"] == "POST")
{
   $name = test_input($_POST["name"]);
   $email = test_input($_POST["email"]);
   $website = test_input($_POST["website"]);
   $comment = test_input($_POST["comment"]);
   $gender = test_input($_POST["gender"]);
}
function test_input($data)
{
   $data = trim($data);
   $data = stripslashes($data);
   $data = htmlspecialchars($data);
   return $data;
}
?>
<h2>PHP Form Validation Example</h2>
<form method="post" action="
<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>
"> 
   Name: <input type="text" name="name">
   <br><br>
   E-mail: <input type="text" name="email">
   <br><br>
   Website: <input type="text" name="website">
   <br><br>
   Comment: <textarea name="comment" rows="5" cols="40"></textarea>
   <br><br>
   Gender:
   <input type="radio" name="gender" value="female">Female
   <input type="radio" name="gender" value="male">Male
   <br><br>
   <input type="submit" name="submit" value="Submit"> 
</form>
<?php
echo "<h2>Your Input:</h2>";
echo $name;
echo "<br>";
echo $email;
echo "<br>";
echo $website;
echo "<br>";
echo $comment;
echo "<br>";
echo $gender;
?>
</body>
</html>
相關文章
相關標籤/搜索