我正在尝试使用PDO创建一个表我的连接很好,因为我刚用try catch块测试它。但我无法在我的数据库中创建任何表
function loadData($table)
{
$conn = new PDO("mysql:host=localhost;dbname=anlyatics_db", "root", "");
$query = "CREATE TABLE if not exists $table); ";
$stmt = $conn->prepare($query);
if ($stmt)
{
$stmt->execute();
}
}