我们正在遵循github上的入门教程,一切顺利,但我们被困在数据库连接上。
我们创建了 $db 对象:
$db=new DB\SQL(
'mysql:host=localhost;port=3306;dbname=liselore',
'jow',
''
);
我们已经设置了一个控制器:
$f3->route('GET /',
function($f3) {
$f3->set('result',$db->exec('SELECT achternaam FROM test1'));
$template = new Template;
echo $template->render('views/homepage.html');
}
);
$f3->run();
但是,我们收到此错误:
Internal Server Error
Fatal error: Call to a member function exec() on a non-object
• fatfree-master/index.php:32
我认为该错误与未设置的 $db 对象有关。但是,我们确实设置了 php-pdo,我只是通过 phpinfo() 进行了检查。
任何帮助都会很棒,谢谢...