嘿伙计们需要帮助,我不明白这是什么问题。我做了重定向,但它不起作用。脚本看起来不错:
<?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();
}
?>