PHP:MySQL插入不工作

时间:2013-03-07 17:17:01

标签: php mysql insert pdo

我无法弄清楚为什么我的插入查询不起作用......这是我的代码:

<?php
session_start();
try
{
$bdd = new PDO('mysql:host=localhost;dbname=gestion', 'root', '');
}
catch(Exception $e)
{
die('Erreur : '.$e->getMessage());
}

$req = $bdd->prepare('INSERT INTO tasks (title, details, maturity, from, to) VALUES(:title, :details, :maturity, :from, :to)');
$req->execute(array(
                    ':title'=>$_POST['title'],
                    ':details'=>$_POST['details'],
                    ':maturity'=>$_POST['maturity'],
                    ':from'=>$_SESSION['login'],
                    ':to'=>$_POST['to']
                    ));

header('Location: tasks.php');
?>

运行此代码时,没有任何事情发生。

感谢您的帮助。

答案:

FROMTO都是保留字......所以,我不能这样使用它们。

1 个答案:

答案 0 :(得分:0)

from和to是mysql中的保留关键字。

你可以在mysql中使用'from'和'to'....但你必须用这个字符包装它们:`(键盘顶部的1键左侧)

所以写`from`而不是from,和`to`而不是