php ile yeni bir html sayfa açmak

2 Cevap php

Ben yeni bir html sayfa açmak benim php istiyorum.

Bir üye kendi kullanıcı adı ve şifrenizi yazarak giriş ve ardından butonuna tıklayabilirsiniz nerede, bir html sayfası var.

kullanıcı adı şifre doğru ise, benim php aynı pencerede farklı bir html sayfa açmak istiyorum.

ben bunu nasıl yapabilirim?

Zeeshan

2 Cevap

Ya da, 'techless' çözüm:

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

Bkz Here.

Başlık işlevini kullanarak deneyin.

header("Location: $url");