bonsoir j'ai un code qui selectionne l'id d'un table et puis faits ressortir le contenu de la table de l'id sélectionné mais aprés selection j'obtient l'erreur
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SRT_002'' at line 1 in C:\wamp\www\mfb\recherche_be2.php on line 17
voila mon code aprés selection:
et la ligne ou se trouve l'erreur c'est:
si quelqu'un peux m'aider à comprendre mon probléme et à améliorer mon code en cas besoin, merci!!
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SRT_002'' at line 1 in C:\wamp\www\mfb\recherche_be2.php on line 17
voila mon code aprés selection:
<?php
$gg = $_GET['id_be'];
$db=new PDO('mysql:host=localhost; dbname=mfb', 'root','');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
if($db != false)
{
$query = "SELECT * FROM be WHERE id_be=':id_be'";
$query = $query.$_GET['id_be']."'";
$requete=$db->query($query);
while ($dataF=$requete->fetch(PDO::FETCH_ASSOC))
{
echo "<table>
<tr>
<td>Num Entrée:</td>
<td>".$dataF['id_be']."</td>
</tr>
<tr>
<td>Matériel:</td>
<td>".$dataF['materiel']."</td>
</tr>
<tr>
<td>Catégorie:</td>
<td>".$dataF['categorie']."</td>
</tr>
<tr>
<td>caractéristique:</td>
<td>".$dataF['caracteristique']."</td>
</tr>
<tr>
<td>Marché numéro:</td>
<td>".$dataF['marche']."</td>
</tr>
<tr>
<td>projet:</td>
<td>".$dataF['projet']."</td>
</tr>
<tr>
<td>Fournisseur:</td>
<td>".$dataF['fournisseur']."</td>
</tr>
<tr>
<td>Prix Unitaire:</td>
<td>".$dataF['P_U']."</td>
</tr>
<tr>
<td>Quantité:</td>
<td>".$dataF['quantite']."</td>
</tr>
<tr>
<td>date entré:</td>
<td>".$dataF['date']."</td>
</tr>
</table>";
}
}
?>
et la ligne ou se trouve l'erreur c'est:
$requete=$db->query($query);
si quelqu'un peux m'aider à comprendre mon probléme et à améliorer mon code en cas besoin, merci!!