0

现在对 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(); 

?>

我的表中没有插入任何内容,有什么原因会发生这种情况吗?!

4

1 回答 1

4

删除这个:

$dbh = null;

它将您的数据库连接设置为空。

于 2013-01-19T19:40:44.097 回答