Problème PHp

Fermé
seb - 8 mai 2013 à 02:17
ShayFmw Messages postés 106 Date d'inscription samedi 12 janvier 2013 Statut Membre Dernière intervention 10 juillet 2013 - 8 mai 2013 à 13:12
Bonsoir a tous j'ai un petit problème :
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in C:\wamp\www\Service\site.php on line 72

voici mon code :
try
{
$bdd = new PDO('mysql:host=localhost;dbname=service', 'root', '');
}
catch(Exception $e)
{
die('Erreur : '.$e->getMessage());
}

// On ajoute une entrée dans la table
$bdd->exec('INSERT INTO Informatiques(Nom, Prénom, Téléphone, Rue, Ville, Département, E-mail, Service, Date, Tarif, Description) VALUES(\'Nom\', \'Prénom\', \'Téléphone\', Rue\'Ville\'Département\'E-mail\'Service\'Date\'Tarif\'Description\'')');
$req->execute(array(
'Nom' => $Nom,
'Prénom' => $Prénom,
'Téléphone' => $Téléphone,
'Rue' => $Rue,
'Ville' => $Ville,
'Département' => $Département,
'E-mail' => $E-mail,
'Service' => $Service,
'date' => $Date,
'Tarif' => $Tarif,
'Description' => $Description,
));

echo 'Service publié !';
A voir également:

1 réponse

ShayFmw Messages postés 106 Date d'inscription samedi 12 janvier 2013 Statut Membre Dernière intervention 10 juillet 2013 43
8 mai 2013 à 13:12
Salut,

La virgule a enlever à la fin de
'Description' => $Description,

Ya peut-être autre chose, j'ai regardé d'un trait lol

0