vote up 0 vote down star

Hello,

I want my php to open a new html page.

I have a html page, where a member can login by typing her username and password and then click on button.

if the username password is correct, i want my php to open a different html page in the same window.

how can i do this??

Zeeshan

flag

74% accept rate

2 Answers

vote up 1 vote down check

Or, the 'techless' solution:

<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>

See Here.

link|flag
2  
Ideally, output both at the same time. If the browser for some reason ignores the Location header, it will still get this page. – Blixt Jul 14 at 16:04
Yes, using the location and the meta both will give the best affidability: just last years some browsers dont follow the location, and some other the meta (i remember that safari, for example, didnt take correctly the meta way if the tag was written capitalized) – DaNieL Jul 15 at 8:48
vote up 6 vote down

Try using the header function.

header("Location: $url");
link|flag
Ensure that it comes before any other output, mind you. – Williham Totland Jul 14 at 16:00
Specifically, output that header if the login succeeds. – Dave Jul 14 at 16:01
Note that the Location header must be an absolute url. So header("Location: http://www.example.com/user/home.php") – Blixt Jul 14 at 16:01
Darn it... that is supposed to be including the http:// protocol and the www. subdomain. – Blixt Jul 14 at 16:02
1  
Don't rely on it. Some browsers implement it, but here's the actual standard definition: w3.org/Protocols/rfc2616/… – Blixt Jul 14 at 16:06
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.