成功提交文件后,它应重定向到位于其他文件夹的malangwaview.php
。任何人都可以帮助我。
<?php
$query = "INSERT INTO malangwa(
id,fullname, address, contactno, bikemodel, bikeno, problem, partsifanychanged, partsprice, nextservice, followupby, remarks
) VALUES (
NULL,'{$fullname}', '{$address}', '{$contactno}','{$bikemodel}','{$bikeno}','{$problem}','{$partsifanychanged}','{$partsprice}','{$nextservice}','{$followupby}','{$remarks}'
)";
if(mysql_query($query, $connection)){
//sucess
header("Location: /malangwaview.php");
exit;
} else {
//Display error message
echo "<p> Subject creation faileld. </p>";
echo "<p>" . mysql_error() . "</p>";
}
?>
<?php mysql_close($connection);?>
答案 0 :(得分:2)
header("Location: another_folder_path/malangwaview.php");
或
header("Location: ../malangwaview.php");
答案 1 :(得分:1)
在PHP中,您可以使用HEADER重定向到任何页面。在你的情况下,它应该是这样的:
header( "Location: http://www.domain.com/another_folder/malangwaview.php" );