voilà j'ai un tableau à 2 dimensions comme ça :
Code :
- $structure[$i]["nom_struct"]
- $structure[$i]["adr_struct"]
- $structure[$i]["cp_ville"]
- $structure[$i]["nom_ville"]
- $structure[$i]["tel_struct"]
- $structure[$i]["fax_struct"]
|
tout ça assigné plus haut dans le code (évidemment)
maintenant je souhaite utilisé ce tableau pour ma requete :
Code :
- for($i=0; $i<count($structure); $i++){
- $query = "SELECT st_nom, ville_cp,ville_nom FROM structure, typstructure, ville WHERE structure.typst_id=typstructure.typst_id AND ville.ville_id=structure.ville_id AND st_nom LIKE \'$structure[$i][\"nom_struct\"]\' AND ville_cp LIKE \'$structure[$i][\"cp_ville\"]\' AND ville_nom LIKE \'$structure[$i][\"nom_ville\"]\'";
- $result = mysql_query($query) or die ("probleme requete" );
- }
|
et j'ai donc un problème, le requete ne s'exécute pas. je pense que c'est un problème d'échappement de caractères au niveau de la variable tableau... ?