我不知道在其他档案中使用班级的人。
db.php是我的Mysql类,我想在其他文件中使用我的mysql类:
<?
require ("db.php");
$sql = new MySQL('vinizos_beta', 'root', 'root', 'localhost');
function show_all(){
$query = 'SELECT * FROM domaines';
$result = $sql->executeSQL($query);
$lastError = $sql->lastError;
print_r($result);
}
?>
但我有这个错误,我不知道为什么?
Undefined variable: sql
答案 0 :(得分:1)
您必须将$ sql作为参数传递给show_all():
function show_all($sql){