我有2个程序welcome.php和form.jsp。我正在使用odbc通过用户表单将值插入SQL数据库。我使用form.jsp创建了一个userform。使用welcome.php插入行。插入时不插入重复值,以便检查while循环中的条件。当if语句工作时,由于exit()语句,它完全从程序中出来。执行退出后,我得到空白页面。但我需要留下用户表单或控件应该转到form.jsp,这样我再次得到用户表单输入详细信息而不给出空白页面。我可以这样做吗?
$query1="select * from company";
$result1 = odbc_exec($connect, $query1);
while(odbc_fetch_row($result1)){
$compname[$index] = odbc_result($result1, 1);
$empname[$index] = odbc_result($result1, 2);
if($compname[$index]==$_POST['cname'])
{
echo "<script> alert(\"compname Exists\") </script>";
exit();
//exit("<script> alert(\"compname Exists\") </script>");
}
if($empname[$index]==$_POST['ename'])
{
echo "<script> alert(\"empname Exists\") </script>";
exit();
}
}
$query=("INSERT INTO dbo.urllink(cname,ename) VALUES ('$_POST[cname]','$_POST[ename]') ");
$result = odbc_exec($connect, $query);
echo "<script> alert(\"Row Inserted\") </script>";
?>
答案 0 :(得分:1)
您可以使用输出缓冲和标题功能。
ob_start();
... many lines of code ...
header("Location: reload.php");
答案 1 :(得分:1)
使用exit()
停止处理程序。要将用户从PHP发送到另一个页面,您可以使用header()
函数和'Location:'参数:
header('Location: form.jsp');
请注意,您无法输出信息(例如,使用echo
),然后使用header
功能。所有输出都需要通过发送给他们的页面来完成。
如果您想传递信息,例如存在提交的字段,您可以使用查询字符串参数发送信息,例如:
header('Location: form.jsp?error=abc');
然后,您的JSP页面将显示错误,具体取决于abc
的含义。
或者,您可以使用会话将更复杂的信息传递到另一个页面。 您可以在会话here上找到更多信息。
答案 2 :(得分:0)
您也可以使用javascript。
window.location = "your location path where you want to redirect";
OR
window.location.href = "your location path where you want to redirect";
我认为这对你也有帮助。
感谢。