我刚刚发现了mysql和mysqli,所以我真的是这里的初学者。我有一个正在使用的函数(来自包含的 php 文件),其中包含所有变量以连接到服务器,OO 风格。它就像主页的魅力,但我有一个页面(使用来自表单的获取请求)尝试使用该功能并失败。这是功能:
function connect(){
$servername = "";
$dbusername = "";
$dbpassword = "";
$dbname = "";
$mysqli = new mysqli($servername, $dbusername, $dbpassword, $dbname);
if($mysqli->connect_errno){
echo "Failed to connect to MySQL: (".$mysqli->connect_errno.") ".$mysqli->connect_error;
}
return $mysqli;
}
GET 请求是否有阻止它的内容?这是不恰当的做法吗?我一直在整理文档,但我很困惑。这是我用来调用该函数的代码:
include_once '/tools/config.php';#This is the file the function is in
#(I even copied the text from the working file)
$mysql = connect();
我的调试相当于注释掉各个行,直到它起作用。可能有更好的方法吗?谢谢你。