这是我使用的代码。数据库名称、表名、用户名、密码是正确的。但它不会使用此代码在 phpMyadmin 的表中插入任何值。我不知道怎么了。请帮忙 :(
<?
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("game", $con);
mysql_query("INSERT INTO `game`.`gametbl` (`ID`, `name`, `score`) VALUES (NULL, 'jjjjjjjj', '66')");
echo"success" ;
mysql_close($con);
<?