Erreur requête Update

WRInaute discret
Salut,


J'ai une erreur de synthax avec la requete suivante mais je ne vois pas où peut bien être cette erreur:

Code:
$sqlUpdate="UPDATE image SET 
id_album='".$newDossierId."',
path_image='admin/Albums/'.$newDossierName.'/'.$nomimage.''";
mysql_query($sqlUpdate) or die(mysql_error());

Voici le message d'erreur :

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 '.NON CLASSEES.'/'.12229image01.jpg.''' at line 3
 
WRInaute discret
Essaye ca :

Code:
$sqlUpdate="UPDATE image SET 
id_album='".$newDossierId."',
path_image='admin/Albums/".$newDossierName."/".$nomimage."'";
 
WRInaute discret
voilà ce que ça donne :

UPDATE image SET id_album='1', path_image='admin/Albums/'.NON CLASSEES.'/'.12229image01.jpg.''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 '.NON CLASSEES.'/'.12229image01.jpg.''' at line 3
 
Discussions similaires
Haut