这就是功能。这是在本地主机上工作的。但不能在实时服务器中工作。
function redirect_to($location = NULL){
if($location != NULL){
header("Location: {$location}");
exit;
}
}
if(mysql_affected_rows() == 1){
//success
redirect_to("index.php");
}
这就是功能。这是在本地主机上工作的。但不能在实时服务器中工作。
function redirect_to($location = NULL){
if($location != NULL){
header("Location: {$location}");
exit;
}
}
if(mysql_affected_rows() == 1){
//success
redirect_to("index.php");
}