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。这可能吗?