당신이 매 5 초 contactus.html로 리디렉션합니다 thanks.php
header("refresh:5;url=contactus.html");
이 PHP 코드를 사용할 수 있지만,이 경우 작동하지 않습니다 : 여기에 당신이 할 거라고 방법 이 실행되기 전에 더 모든 출력이없는 경우 header()
은 그래서 지금 당신이 자바 스크립트를 사용할 수
일을하기 때문에 당신은, 감사합니다 메시지를 인쇄하는
setTimeout(function() {
window.location.href= 'http://localhost/xxx/contactus.html'; // the redirect goes here
},5000); // 5 seconds
thankyou.php
파일에이 스크립트를 입력하십시오.
UPDATE : 메타 태그는 단지 <head>
섹션에서이 줄을 넣어 thankyou.php
에서 사용할 수있는
<meta http-equiv="refresh" content="5;url=http://www.yoursite.com">