• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

我这个代码为什么提交回复后点击退回键不能回到帖子列表页?

php 搞代码 4年前 (2022-01-25) 25次浏览 已收录 0个评论
文章目录[隐藏]

就是类似SF的一个效果 我们在帖子列表页点击某一个标题进入到这个帖子主题里面 在主题里面提交发表完回复后再点一下浏览器的后退按钮就又退回到帖子列表页了 但我做的这个效果有个bug 就是如果不提交回复点一次就能回到帖子列表页 提交回复后需要点击两次退回按钮才能退回到帖子列表页 如果在这个帖子里面提交两次回复需要点击三次退回按钮才能回到帖子列表页 这是为什么啊?

这个就是帖子的主题页 tieba3.php

<code><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />;    <title></title>    <style type="text/css">    #top{position:relative;width: 1350px;height: 50px;border: 1px solid black;}    #main{position: relative;margin: 0 auto;width: 900px;height: 600px;border: 1px solid black;}    li{list-style: none;display: block;float: left;width: }    #reply{position: absolute;bottom: 20px;width: 700px;height: 200px;border: 1px solid black;}    </style><body><div id="top">    <?phpinclude "cookie.php";?></div><div id="main">  <div id="title">  <?php       $pdo=new PDO("mysql:host=localhost;dbname=t1","root","");    $title=$_GET['id'];    $stmt=$pdo->prepare("select id,title,content from topic where id=?");    $stmt->execute(array($title));    $res=$stmt->fetchall(PDO::FETCH_ASSOC);    foreach($res as $v){      echo '<font size="5" face="arial">'.$v['content'].'</font>';    }  ?>  <?php   $pdo=new PDO("mysql:host=localhost;dbname=t1","root","");   $id2=$_GET['id'];   $stmt=$pdo->prepare("select id,reid,content from reply where reid=?");   $stmt->execute(array($id2));   $res1=$stmt->fetchall(PDO::FETCH_ASSOC);    foreach($res1 as $v2){      echo $v2['content'];     }   ?>  </div>  <div id="reply">         ">     " >      <textarea id="title" name="content"></textarea>      <button type="submit">提交</button>    </div></div></code>

tieba4.php

<code><?phpif(isset($_POST['reid'])){  $pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $stnt=$pdo->prepare("insert into reply(reid,name,content)values(:reid,:name,:content)"); $stnt->execute($_POST);header("location:http://localhost/tieba3.php?id=".$_POST['reid']);}?></code>

回复内容:

就是类似SF的一个效果 我们在帖子列表页点击某一个标题进入到这个帖子主题里面 在主题里面提交发表完回复后再点一下浏览器的后退按钮就又退回到帖子列表页了 但我做的这个效果有个bug 就是如果不提交回复点一次就能回到帖子列表页 提交回复后需要点击两次退回按钮才能退回到帖子列表页 如果在这个帖子里面提交两次回复需要点击三次退回按钮才能回到帖子列表页 这是为什么啊?

这个就是帖子的主题页 tieba3.php

<code><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />;    <title></title>    <style type="text/css">    #top{position:relative;width: 1350px;height: 50px;border: 1px solid black;}    #main{position: relative;margin: 0 auto;width: 900px;height: 600px;border: 1px solid black;}    li{list-style: none;display: block;float:<strong style="color:transparent">来2源gaodaima#com搞(代@码&网</strong><label>搞gaodaima代码</label> left;width: }    #reply{position: absolute;bottom: 20px;width: 700px;height: 200px;border: 1px solid black;}    </style><body><div id="top">    <?phpinclude "cookie.php";?></div><div id="main">  <div id="title">  <?php       $pdo=new PDO("mysql:host=localhost;dbname=t1","root","");    $title=$_GET['id'];    $stmt=$pdo->prepare("select id,title,content from topic where id=?");    $stmt->execute(array($title));    $res=$stmt->fetchall(PDO::FETCH_ASSOC);    foreach($res as $v){      echo '<font size="5" face="arial">'.$v['content'].'</font>';    }  ?>  <?php   $pdo=new PDO("mysql:host=localhost;dbname=t1","root","");   $id2=$_GET['id'];   $stmt=$pdo->prepare("select id,reid,content from reply where reid=?");   $stmt->execute(array($id2));   $res1=$stmt->fetchall(PDO::FETCH_ASSOC);    foreach($res1 as $v2){      echo $v2['content'];     }   ?>  </div>  <div id="reply">         ">     " >      <textarea id="title" name="content"></textarea>      <button type="submit">提交</button>    </div></div></code>

tieba4.php

<code><?phpif(isset($_POST['reid'])){  $pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $stnt=$pdo->prepare("insert into reply(reid,name,content)values(:reid,:name,:content)"); $stnt->execute($_POST);header("location:http://localhost/tieba3.php?id=".$_POST['reid']);}?></code>

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:我这个代码为什么提交回复后点击退回键不能回到帖子列表页?
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址