PHP mysql 表创建不起作用!为什么这段代码不起作用?
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db('allheight', $con);
$sql = 'CREATE TABLE Posts
(
PostID int NOT NULL AUTO_INCREMENT,
Title varchar(15),
Picture varchar(2000),
Description text,
Height text
)';
mysql_query($sql, $con);
mysql_close($con);
?>
这里的问题是代码似乎无法创建表“帖子”。