我先把以下东西节省到我的台。 网址
$host = localhost ;
$username = root ;
$pass = mypass ;
try {
$dbh = new PDO("mysql:host=$host;dbname=horh_new", $username, $pass);
} catch (PDOException $e) {
echo $e->getMessage();
}
是什么最佳方法把这一点纳入我的文字? 现在,我开始在数据库中添加一个用户的功能,而数据库中也有这样的内容:
function insertUser($username) {
include("dbConnect.php"); // i d like to not have to include this each time
$query = $dbh->prepare("INSERT INTO users (username) values (?)");
$query->bindParam(1, $username);
$query->execute();
}
显然,我的职能越多,我就越需要包括这一条线。 php档案。 相反,我是否应该把它列入一个有私人变量的类别,即用户名称、影子和客套(因此在使用相同变数时没有冲突)。
Then include the class once in the header of my script instead of in every single function? I m quite new to PDO, so I d like to figure out the most efficient method of doing this. Thanks.