0

这就是功能。这是在本地主机上工作的。但不能在实时服务器中工作。

function redirect_to($location = NULL){
    if($location != NULL){
        header("Location: {$location}");
        exit;
    } 
}

if(mysql_affected_rows() == 1){
    //success

    redirect_to("index.php");
}
4

1 回答 1

1

不要为参数定义默认值然后检查它,只是不要一开始就给它一个默认值。同时删除Location:标题中的括号。

function redirect_to($location){
    header("Location: $location");
    exit;
}

if(mysql_affected_rows() == 1){
    //success

    redirect_to("index.php");
}
于 2012-06-24T08:34:44.113 回答