欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Header() in PHP &html – Refresh (Redirect) to Location (URL) in X seconds

程序员文章站 2022-05-05 17:29:25
...
Case 1 : Redirect a page to a URL without waiting in PHP.

1

header("Location: index.php");

Case 2 : Redirect a page to an URL after waiting for X seconds in PHP.

1

2

3

4

5

header("Refresh: 5; url=index.php");

echo 'Logged in successfully.'; ?>

HTML code to redirect a webpage after X seconds.

1

meta http-equiv="refresh" content="5; url=http://sau.comli.com/">

以上就介绍了Header() in PHP &html – Refresh (Redirect) to Location (URL) in X seconds,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。