我還沒有找到任何解決方案,我的問題,所以我決定問。我想在提交表單後重定向我的php腳本頁面,所以我在代碼末尾使用了標題!有趣的是,當我在本地主機上測試它時,它可以正常工作併成功重定向頁面,但是當我在遠程服務器上測試它時,它無法重定向頁面!當我提交表單時,它會轉到處理腳本並顯示一個空白頁面!我想知道有沒有人可以幫助我解決這個問題。PHP的重定向頁面只能在本地主機
,這裏是我的形式處理腳本代碼:
<?php require_once('Connections/db.php'); ?>
<?php
if (isset($_POST['submit']))
{
$name = mysqli_real_escape_string($connection, $_POST['name']);
$email = mysqli_real_escape_string($connection, $_POST['email']);
$subject = mysqli_real_escape_string($connection, $_POST['subject']);
$message = mysqli_real_escape_string($connection, $_POST['message_area']);
$sql = "INSERT INTO contact_messages (name, email, subject, message)
VALUES ('$name', '$email', '$subject','$message')";
$result = mysqli_query($connection, $sql);
if($result){
header('Location: http://www.mylink/index.htm');
exit();
}
else{
echo "ERROR: Could not execute the form " . mysqli_error($connection);
}
}
?>
你讓'error_reporting'後檢查? ?你必須得到一些'頭已經發送錯誤' –
我敢打賭我的屁股有問題的查詢。可能你沒有正確設置數據庫。啓用'error_reporting()'並再次檢查 –
在標題(...)之前不應該有任何輸出(如echo .. ...);命令。 –