按下提交按钮php mysql后重定向到另一个页面

时间:2012-12-14 15:36:12

标签: php mysql linux redirect

在表单完成并按下提交按钮后,我会重定向到下一页。此代码在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);
                        }
              ?>

1 个答案:

答案 0 :(得分:0)

这是一个完整的黑暗镜头,但可能是正确的。 Windows并不具有案例敏感性,但NIX是。

Capture_Menu.php

这究竟是如何在你的UNIX机器上大写的吗?

此外,在执行标题重定向之前,您无法显示或回显浏览器。请检查回声,甚至在“&gt;

之后丢失空格

之前我的重定向无效,因为我的代码在输出中打印了一些我没有故意这样做的内容。

你可以试试这个......

error_reporting(E_ALL); 
ini_set('display_errors', 'On');