1

嘿伙计们需要帮助,我不明白这是什么问题。我做了重定向,但它不起作用。脚本看起来不错:

<?php
require_once 'php/db_connect.php';//DB connect
require_once 'php/functions.php';// function

if(!isset($_GET['pid'])){//Getting page id to return to that page
    $page_id = 1;
}

else{
    $page_id = preg_replace('#[^0-9]#i', '', $_GET['pid']);
}

$user = $_POST['user_reg'];
$password = $_POST['pass_reg'];

$result = add_user($user , $password);

if(!$result){
    return false;
}

else{
    header('location:index.php?pid='.$page_id.'');
    die();
}
?>
4

1 回答 1

3

尝试大写Location

http://www.php.net/manual/en/function.header.php#79028

标题的第一个元素(即“位置”)根据浏览器区分大小写。

于 2013-07-17T18:11:57.197 回答