Bonjour, alors voila mon probleme.
J'ai une requete qui ne fonctionne pas dans l'execution du script mais qui fonctionne tres bien manuellement dans mysql, c'est a rien y comprendre!!!
Ma requete :
Update pos_formulaire set x = 567 where x between 562 and 572; Update pos_formulaire set y = 244 where y between 239 and 249; Update pos_formulaire set x = 565 where x between 560 and 570; Update pos_formulaire set y = 275 where y between 270 and 280; Update pos_formulaire set x = 564 where x between 559 and 569; Update pos_formulaire set y = 305 where y between 300 and 310; Update pos_formulaire set x = 393 where x between 388 and 398; Update pos_formulaire set y = 243 where y between 238 and 248; Update pos_formulaire set x = 392 where x between 387 and 397; Update pos_formulaire set y = 274 where y between 269 and 279; Update pos_formulaire set x = 390 where x between 385 and 395; Update pos_formulaire set y = 339 where y between 334 and 344;
ce qui donne avec php :
x y
567 244
565 275
564 305
565 337
393 243
392 274
391 305
390 339
ce qui donne quand je l'execute dans la fenetre de mysql :
x y
564 243
564 274
564 305
564 339
390 243
390 274
390 305
390 339
c'est le resultat que j'attend avec PHP !!!
J'ai besoin que l'on m'eclaire un pe sur le sujet!
