使用 PHP 验证表单数据
程序员文章站
2022-04-24 09:46:12
...
当用户提交表单时,做到以下两件事是非常有必要:
";echo $email;echo "
";echo $website;echo "
";echo $comment;echo "
";echo $gender;?>
使用 PHP trim() 函数去除用户输入数据中不必要的字符 (如:空格,tab,换行)。
使用PHP stripslashes()函数去除用户输入数据中的反斜杠 (\)
Your Input:";echo $name;echo "PHP Form Validation Example
";echo $email;echo "
";echo $website;echo "
";echo $comment;echo "
";echo $gender;?>
上一篇: 封装的Sqlite3简易操作类