使用 PHP 在包含数据库的数据库上创建表$fsdbh
。显然我错过了一些东西。
function createdb($tables){
global $fsdbh;
$sth = $fsdbh->prepare('CREATE TABLE IF NOT EXISTS system');
$sth->execute();
}
此功能在触发时会导致黑屏。
目的是使用该函数创建一系列表:
function createdb($tables){
global $fsdbh;
$sql = 'CREATE TABLE IF NOT EXISTS system';
foreach($tables as $table){
$sql.= '; CREATE TABLE IF NOT EXISTS $table';
}
$sth = $fsdbh->prepare($sql);
$sth->execute();
}
我们如何让它发挥作用?