我有一個腳本可以將輸入表單的電子郵件提交到數據庫,我想知道在提交郵件後是否有重定向PHP腳本的方法?在腳本運行後重定向PHP
我的腳本 -
<?php
$con = mysql_connect("localhost","User","Pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("emails", $con);
$sql="INSERT INTO mlist (email)
VALUES
('$_POST[email]'')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
mysql_close($con)
?>
請能有人給明確的指示,因爲我學習PHP仍。
如果不產生任何輸出; `header(「Location:http://www.example.com/redirect/to/otherpage_or_samepage.php?with = different_variables「);`但要小心,如果你輸出一些東西然後發送一個不同的頭文件,你會得到一個錯誤... – acm 2011-01-07 10:19:12