gpt4 book ai didi

javascript - 如何去掉url中的id

转载 作者:行者123 更新时间:2023-12-03 04:41:05 24 4
gpt4 key购买 nike

现在我遇到一个问题,如果用户重新加载页面或返回到页面,用户将看到“更新成功”的弹出窗口。有人知道如何在弹出窗口上单击“确定”后删除 ?id=2 吗?
这是我的代码:

update_action.php

$updresult = mysqli_query($conn, $sqlu);

if (!$updresult)
echo "Unable to update record". mysqli_error($conn);
else
{
header('Location: index.php?id=2' );
mysqli_close($conn);
}
?>

index.php

if ($id == 1) 
{
?>
<script>
alert("Invalid user name or password, Try again");
</script>
<?php
}
else if($error_id == 2)
{
?>
<script>
alert("Update Sucessfully!");
</script>
<?php
}

the url show index.php?id=2

最佳答案

if ($id == 1) 
{
?>
<script>
alert("Invalid user name or password, Try again");
</script>
<?php
}
else if($error_id == 2)
{
?>
<script>
alert("Update Sucessfully!");
//---------- added ---------------
window.location.href= 'index.php';
//-------------------------

</script>
<?php
}

关于javascript - 如何去掉url中的id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43086458/

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