现在对 PDO 感到非常困惑!
我试图在我的表中插入任何东西,只有我不能,我有以下连接文件......
<?php
$username = 'access@site.co';
$password = 'access';
try {
$dbh = new PDO('mysql:host=localhost;dbname=site_co_uk', $username, $password);
$dbh = null;
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
?>
我的php是...
<?php
error_reporting(E_ALL);
include_once ('connection.php');
$STH = $dbh->prepare("INSERT INTO users ( firstname ) values ( 'Cathy' )");
$STH->execute();
?>
我的表中没有插入任何内容,有什么原因会发生这种情况吗?!