08-11-2006, 07:05 PM
(Modification du message : 02-11-2008, 01:24 AM par Sephi-Chan.)
j'affiche une map seulement cette map contient differents elements dispersees dansdifferentes tables ce qui fait que je dois faires des appele sql a chaque cas de la map pour verifier quel objet est a afficher
je me retrouve avec une boucle while poru afficher la map et avec ce code a chaque case
ce que je trouve totalement inconcevable....
quelqu'un aurait il une solution ?
je me retrouve avec une boucle while poru afficher la map et avec ce code a chaque case
Citation : $sqlUsers = mysql_query("select matricule,avatar,x,y,login,zircon from THD_users where x='$x' and y='$y' and localisation='".$dataUser['localisation']."'");
$sqlVaisseaux = mysql_query("select vaisseau,immatriculation,x,y from THD_vaisseaux where x='$x' and y='$y' and localisation='".$dataUser['localisation']."'");
$sqlMagasins = mysql_query("select id from THD_magasins where x='$x' and y='$y' and localisation='".$dataUser['localisation']."'");
$sqlMineraies = mysql_query("select id,valeur from THD_mineraies where x='$x' and y='$y' and localisation='".$dataUser['localisation']."'");
$sqlTerrains = mysql_query("select nom from THD_terrains where x='$x' and y='$y' and localisation='".$dataUser['localisation']."'");
$sqlPersonnel = mysql_query("select id,type from THD_personnel where x='$x' and y='$y' and localisation='".$dataUser['localisation']."'");
ce que je trouve totalement inconcevable....
quelqu'un aurait il une solution ?