PHP에서 페이지 전환(리다이렉션)을 하고 싶을 때 사용할 수 있는 4가지 방법
1. 자바스크립트 Location.href 이용
echo "<script>location.href='URL 또는 경로'</script>";
2. 자바스크립트 Location.replace 이용
echo "<script>location.replace('URL 또는 경로')</script>";
3. Header 이용
header("location: URL 또는 경로");
4. 메타태그 이용
echo "<meta http-equiv='refresh' content='시간' url='URL 또는 경로'";
출처 :
'Web Programming Language > PHP' 카테고리의 다른 글
PHP) 세션 삭제 session_destroy( ) 함수 (0) | 2020.10.27 |
---|---|
PHP) session_start( ) 함수 (0) | 2020.10.27 |
PHP) MySQL 레코드 가져오기 mysqli_fetch_assoc( ) (0) | 2020.10.27 |
PHP) MySQL 쿼리 실행하기 mysqli_query( ) (0) | 2020.10.27 |
php 웹서버 전송방식 (0) | 2020.10.27 |
댓글