我似乎无法弄清楚为什么我的函数没有看到$ conn变量。其他功能似乎工作正常。
这是我调用我的函数的文件:
require_once('../functions.php');
if('POST' == htmlspecialchars($_SERVER['REQUEST_METHOD'])) {
$user_id = $_SESSION["user_id"];
$day = $_POST["day"];
$month = $_POST["month"];
$year = $_POST["year"];
$type = '';
$content = $_POST["content"];
add_bullet($user_id, $day, $month, $year, $type, $content, $conn);
}
这是我的functions.php
require_once('../include/db_connect.php');
// other functions here..
function add_bullet($user_id, $day, $month, $year, $type, $content, $conn) {
$sql = "INSERT INTO `mbt`.`bullets` (`id`, `user`, `day`, `month`, `year`, `type`, `content`) VALUES ('', '$user_id', '$day', '$month', '$year', '$type', '$content');";
mysqli_query($conn, $sql);
}
我的其他功能似乎使用相同的方法工作得很好。
这是我的db_connect.php
$dbserver = "xxx";
$dbuser = "xxx";
$dbpassword = "xxx";
$dbname = "xxx";
$conn = new mysqli($dbserver, $dbuser, $dbpassword, $dbname);
if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); }
答案 0 :(得分:0)
你不能只使用你想要的其他文件变量.. 添加此全局,然后尝试..
$content = $_POST["content"];
global $conn;
add_bullet($user_id, $day, $month, $year, $type, $content, $conn);
更好的想法是在db文件中定义函数,它将返回连接,这样你就不需要传递它,只是为了使用方法..