我遇到的问题是:
代码插入到数据库中(我已经检查过)但后来没有重定向。
PHP:
$sql = "INSERT INTO privateChats (user1, user2, name) VALUES ('$user1', '$user2','$category')";
if(mysqli_query($conn, $sql)){
header("Location: index.php?page=chat2");
mysqli_error($conn);
exit;
}else{
mysqli_error($conn);
}