如何阻止用户使用"返回"返回我的商店结帐。浏览器的按钮?

时间:2016-10-17 13:33:11

标签: php

checkout.php:

<form action="success.php" method="post">
    <input name="firstname">
    <button type="submit">Order now</button>
</form>

success.php:

if ( !empty($_POST)) {
  echo "Hello ".$_POST['name'].". Your order was successful"
}

订购后,我的客户将进入success.php页面。我现在想要通过点击&#34;后退按钮&#34;用户返回checkout.php的浏览器。我希望他能去我的index.php。这可能吗?

0 个答案:

没有答案