热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

“提交评论”会重定向到另一个页面-'submittingcomment'redirectstoanotherpage

Iamabouttobuildacommentsectioninmywebsite.Imadecommentbox.Postingcommentandupdatin

I am about to build a comment section in my website. I made comment box. Posting comment and updating that into database works fine. But the problem is while submitting any comment it navigates me to the first page (in my case it's home page under the HOME tab). It doesn't let user stay at the same page.

我即将在我的网站上建立评论部分。我做了评论框。发布评论并将其更新到数据库中可以正常工作。但问题是在提交任何评论时它会导航到第一页(在我的情况下,它是HOME页面下的主页)。它不允许用户停留在同一页面。

main.php:

 



 


Name:
Comment:
'.'
'.$comment .'
'.'
'.'
'; } } ?>

3 个解决方案

#1


1  

Try putting instead of . Also, your code is vulnerable to SQL injection. See this StackOverflow discussion to see what I mean and how to prevent it.

尝试使用

而不是。此外,您的代码易受SQL注入攻击。请参阅StackOverflow讨论,看看我的意思以及如何防止它。

#2


0  

Is this comments box is on home page or at any left , right panel.

此评论框是在主页上还是在任何左侧,右侧面板上。

If it is try to put 'the file path' into And put ur comment insertion code into that page . Means a page where u want to stay user.

如果是尝试将“文件路径”放入 <表单操作'提供您的文件名'> 并将您的评论插入代码放入该页面。表示您想要留住用户的页面。

#3


0  

if($submit)
{
  if($name!='' && $comment!='')
  {
   $insert=mysql_query("INSERT INTO comment (name,comment) VALUES ('$name','$comment') ");
   header("location:your filename.php");
   exit;
  }
}

推荐阅读
author-avatar
zhangsheng7_215
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有