bl75013
Messages postés9Date d'inscriptionvendredi 20 octobre 2006StatutMembreDernière intervention16 janvier 2012
-
16 janv. 2012 à 17:56
homeopathie
Messages postés1Date d'inscriptionjeudi 2 février 2012StatutMembreDernière intervention 2 février 2012
-
2 févr. 2012 à 08:23
Bonjour,
si vous pouvez m'aider sur ce code ou j'ai
Parse error: syntax error, unexpected '}', expecting ',' or ';' ligne 22
je cherche après sélection à faire apparaître le produit sélectionné.
merci par avance.
<?php
try
{
$bdd = new PDO('mysql:host=.......;dbname=.......', '.........' , '........');
}
catch(Exception $e)
{
die('Erreur :'.$e->getMessage());
}
?>
<?php
if(!empty($_GET['prod_1'])) {
// Récupération du produit
$statement $bdd->prepare('SELECT nom, prix FROM article WHERE id ? LIMIT 0,5');
$statement->execute(array($_GET['prod_1']));
$produit = $statement->fetch();
echo '
'
. htmlspecialchars($produit['nom']) . '
'
. nl2br(htmlspecialchars($produit['prix'])) . '
'
}
$statement->closeCursor();
?>