控件应该在使用php的if语句中退出其他程序

我有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>";

 ?>

最佳答案 使用exit()停止程序的处理.要将用户从PHP发送到另一个页面,您可以使用header()函数和’Location:’参数:

header('Location: form.jsp');

请注意,您无法输出信息(例如,使用echo),然后使用标题功能.所有输出都需要通过发送给他们的页面完成.

如果要传递信息(如提交的字段存在),可以使用查询字符串参数发送它,例如:

header('Location: form.jsp?error=abc');

然后,您的JSP页面将显示错误,具体取决于abc的含义.

或者,您可以使用会话将更复杂的信息传递到另一个页面.
您可以在会话here上找到更多信息.

点赞