欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php实现保存submit内容之后禁止刷新

程序员文章站 2022-06-14 12:09:20
复制代码 代码如下: $strsql = "insert into `xxx` (`aaa`) values ('".$_post["bbb"]."','".$_post[...
复制代码 代码如下:

$strsql = "insert into `xxx` (`aaa`) values ('".$_post["bbb"]."','".$_post["ccc"]."',,now())";

$result=@mysql_query($strsql,$my_con);
$maxrow=@mysql_affected_rows();
testecho ($y.mysql_affected_rows()." $errcode ".$strsql); #debug
mysql_sql_log($strsql,mysql_affected_rows(),$_server['script_name'].":".__line__);
if($maxrow>0){
$insertflag =1;
}

echo '<script>location.href="6612.php?inserted=1"</script>';

重点是最后一句,在insert完之后,重新载入一次页面,并且加上参数,然后在页面上写个判断,又get的参数并且为1的时候disabled。
复制代码 代码如下:

<?php echo $insertflag;print_r($_get); if($_get[inserted]!=1){?>
<input type="submit" value="新規登録" name="insertn" class="box1a"></input>
<?php }else{?>
<input type="botton" value="新規登録" name="insertn" class="box1a" disabled></input>
<?php }?>