使用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();
}
我们如何让它发挥作用?