3个验证者删除
我需要删除一些经过 3 次验证检查的内容。我该怎么办呢。目前我正在这样做:
mysql_query("DELETE FROM comments WHERE comment_id='$comment' AND (
p_id='$pid'
for_w = '$z'");
I need to delete something with 3 verification checks. how can i do it. Currently this is the way i am doing it:
mysql_query("DELETE FROM comments WHERE comment_id='$comment' AND (
p_id='$pid'
for_w = '$z'");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
What about:
你就快到了:
You're almost there:
1 - 您必须在第二个和第三个条件之间放置“AND”
2 - 删除(第一个之后:
1 - You have to put AND between your second and third condition
2 - Remove ( after the first one: