WRInaute impliqué
Bonjour,
j'utilise ce code :
ça marche très bien quand $slug est dans la table, mais si slug (animal) n'est pas dans la table ça m'affiche :
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 '' at line 1
une idée ?
Merci
j'utilise ce code :
Code:
$slug='animal';
$enscat= "SELECT * from categorie where slug = '".$slug."'";
$dbdbcat=mysql_query($enscat);
$ensegcat = mysql_fetch_array($dbdbcat);
echo $ensegcat['id'];
ça marche très bien quand $slug est dans la table, mais si slug (animal) n'est pas dans la table ça m'affiche :
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 '' at line 1
une idée ?
Merci