标签: php html
我的PHP代码有问题,我不知道是否有容易解决的问题。我有一个联系页面,我想按“提交”按钮,然后让它在新页面上显示一条消息,然后按一下“确定”按钮后,让页面将我重定向到索引页面。到目前为止,我只能使重定向工作。
<?php $redirect_page = 'index.html'; $redirect = True; if ($redirect==True) { header('Location: '.$redirect_page); exit(); } ?>