0

表单完成并按下提交按钮后,我将重定向到下一页。此代码在 Windows 服务器上运行良好,但无法重定向到 linux 服务器上的下一页

<?php
include 'scripts/functions/init.php';

Restrict();

?>
<?php


$userid = $_SESSION['userid'];
if (empty($_POST)=== false)
    {
        $R_fields = array('OFO_Code','OFO_Title','Curr_Code','Curr_Title');
        foreach($_POST as $key=>$value)
        {
            if (empty($value) && in_array($key,$R_fields)=== true)
                {
                    $errors[] = 'fields marked with (*) are required';
                    break 1;
                }
        }

        $_SESSION['Combo'] = $_SESSION['OFO_Code'].$_SESSION['Curr_Code'];      
        if(empty($errors)=== true)
            {
                if(Curr_Code_exists($_SESSION['Combo']))
                    {
                        $errors[] = 'Sorry, the Curriculum Code already exist, please use the edit function';
                    }
                if(strlen('Curr_Code')<6)
                    {
                        $errors[] ='Curriculum Code must be at least 6 Characters';
                    }

            }
    }

?>

上面的代码出现在 html 之前,然后是表单。然后就在提交按钮之后遵循以下内容,它也位于内部

<?php
                    $_SESSION['OFO_Code'] = $_POST['OFO_Code'];
                    $_SESSION['Curr_Code'] = $_POST['Curr_Code'];


                    if(empty($_POST) === false && empty($errors)=== true)
                        {
                            //Capture data from the fields to an array
                            $Capture_Occupation_info = array(
                            'OFO_Code' => $_SESSION['OFO_Code'],
                            'OFO_Title'=>$_POST['OFO_Title'],
                            'Curr_Code'=>$_SESSION['Combo'],
                            'Curr_Title'=>$_POST['Curr_Title'],
                            'userid'=>$userid);

                            //Submit the data into the database
                            capture_occupation_info($Capture_Occupation_info);
                            header('Location:Capture_Menu.php');
                            exit();
                        }
                    else
                        {
                            //Display errors

                            echo output($errors);
                        }
              ?>
4

1 回答 1

0

这是在黑暗中的完整镜头,但可能是正确的。Windows 不区分大小写,但 NIX 是。

Capture_Menu.php

这正是它在您的 UNIX 机器上的资本化方式吗?

此外,在进行标头重定向之前,您不能向浏览器显示或回显。请检查回声,甚至在诸如 ?>

我之前的重定向不起作用,因为我的代码在输出中打印了一些我没有故意做的事情。

你可以试试这个...

error_reporting(E_ALL); 
ini_set('display_errors', 'On');
于 2012-12-14T15:44:07.560 回答