gpt4 book ai didi

php - 如果表单值等于特定值则死亡

转载 作者:行者123 更新时间:2023-11-29 14:55:04 24 4
gpt4 key购买 nike

在使用 $_POST 函数将数据输入数据库之前,我想检查字段的名称。如果 comment_author_name 等于特定名称,我想退出/死亡/终止该函数。

例如,如果 HTML 表单上评论作者的名字是 John,我希望 PHP 函数终止,以便数据不会输入到数据库中。

下面的代码不起作用。我缺少什么?有更好的方法吗?

<?php
$val1 = "John";
if (($row->comment_author_name) == ($val1))
{
die("You are not allowed to post!");
}
?>

最佳答案

你可以这样做:

if ($_POST['comment_author_name'] == 'John'){
die("You are not allowed to post!");
}

关于php - 如果表单值等于特定值则死亡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4844396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com