// 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 = stripslashes($data);
$data = htmlspecialchars($data);
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">
姓名:<input type="text" name="name">
电邮:<input type="text" name="email">
网址:<input type="text" name="website">
评论:<textarea name="comment" rows="5" cols="40"></textarea>
<input type="radio" name="gender" value="female">女性
<input type="radio" name="gender" value="male">男性
<input type="submit" name="submit" value="提交">