这段代码用于从数据库中返回所选 $ID 的名称,
#DB Informations (username/password)
require('/path/to/db_informations.php');
# This function return the 'name of the $ID from the db
function getName($ID){
$link = new PDO($dsn, $user, $pwd);
$query = "SELECT `name` FROM `tables` WHERE `id`=$ID";
$smt = $link->prepare($query);
$smt->execute();
$name = $smt->fetch(PDO::FETCH_ASSOC);
return $name['name'];
}
# db_informations contain the credentials to connect the database. ($dsn, $user, $pwd)
require(/path/to/db_informations.php')
即使我输入 `require();',Mmh也无法在函数内部工作 在体内发挥作用。我不明白我的错误,请您解释一下:
为什么 /path/to/file 不包含在 PHP 中?怎么做?