php 和 javascript 中的表单验证

发布于 2024-10-11 12:19:05 字数 84 浏览 1 评论 0原文

我们经常在标准输入表单中看到,如果值与输入条件不匹配,那么,无论发生什么,即使单击提交按钮后,数据也不会插入到数据库中。问题是,如何防止错误数据进入表中。

We often see in a standard input form that , if the values do not match the input criteria , then ,come whatever may , even after clicking on the submit button the data is not inserted into database.The question is, how do you prevent erroneous data from entering into the table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦言归人 2024-10-18 12:19:05

数据可以在“服务器端”或“客户端”进行验证。如果您想要在将其发送到服务器之前对其进行验证,那么您需要的是“客户端”验证。为此,您需要使用 Javascript(请参阅:使用 Javascript 进行表单验证) 。

即使您使用 JavaScript 验证数据,也无法防止将错误数据插入数据库(例如,客户端中可能未启用 JavaScript)。为此,您需要使用 php 进行“服务器端”验证。

为了获得更好的效果,请同时使用。 Javascript 将防止每次发送错误的数据(减少服务器的负载),而 PHP 将帮助您保持数据的可靠性。

Data can be validated "server-side" or "client-side". If what you want is to validate it BEFORE sending it to the server, then what you need is a "client-side" validation. In order to do that, you need to use Javascript (see: Form validation with Javascript).

Even if you validate your data with Javascript, this won't prevent inserting erroneous data into your Database (for example, javascript may not be enabled in the client). For this, you need "server-side" validation using php.

For better results, use both. Javascript will prevent sending erroneous data every time (less load for your server) and PHP will help you to keep your data reliable.

划一舟意中人 2024-10-18 12:19:05

有一些 javascript 或 python 过滤器,因此 onSubmit() 函数在实际提交之前发生,

例如

其中 submitFunc() 是之前在

function SubmitFunc(用户名, 密码) {

if (!username) {

document.write("呃哦!用户名不是有效!")

}

if (!password) {

document.write("哦哦!密码无效!")

}

}

have some javascript or python filter so an onSubmit() function occurs before actual submission

e.g.

<input type="submit" onsubmit="submitFunc()" />

where submitFunc() is defined earlier on

<script type="text/javascript">

function submitFunc(username, password) {

if (!username) {

document.write("Uh oh! username not valid!")

}

if (!password) {

document.write("Uh oh! password not valid!")

}

}

</script>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文