我尝试将表单的数据存储到数据库中。我无法弄清楚为什么这段代码不起作用......什么也没有发生。感谢您的帮助。这是我的代码:
<?php
// Connexion à la base de données
try
{
$bdd = new PDO('mysql:host=localhost;dbname=mydb', 'root', '');
}
catch(Exception $e)
{
die('Erreur : '.$e->getMessage());
}
// Insertion du message à l'aide d'une requête préparée
$auteur="Henri";
$req = $bdd->prepare('INSERT INTO factures (projet, fournisseur, montant, ref, in_out, commentaires, auteur, input_date, maturity) VALUES(:projet, :fournisseur, :montant, :ref, :in_out, :commentaires, :auteur, CURDATE(), :maturity');
$req->execute(array(
'projet'=>$_POST['projet'],
'fournisseur'=>$_POST['fournisseur'],
'montant'=>$_POST['montant'],
'ref'=>$_POST['ref'],
'in_out'=>$_POST['in_out'],
'commentaires'=>$_POST['commentaires'],
'auteur'=>$auteur,
'maturity'=>$_POST['maturity']
));
header('Location: index.php');
?>
正确的代码: - 'projet'=>$_POST['projet'] 必须是 ':projet'=>$_POST['projet'], - 在 VALUES SQL 查询的末尾缺少 )。