我希望我的php打开一个新的html页面。
我有一个html页面,会员可以通过输入用户名和密码登录,然后点击按钮。
如果用户名密码正确,我希望我的php在同一个窗口中打开一个不同的html页面。
我该怎么做?
Zeeshan
答案 0 :(得分:11)
尝试使用标题功能。
header("Location: $url");
答案 1 :(得分:3)
或者,'无技术'解决方案:
<html>
<head>
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0;URL=newpage.php">
</head>
<body>
You are being automatically redirected to a new location.<br />
If your browser does not redirect you in few seconds, or you do
not wish to wait, <a href="newpage.php">click here</a>.
</body>
</html>
请参阅Here.
答案 2 :(得分:0)
尝试使用锚标记:
<a href="#" >Link name</a>