21-12-2006, 10:17 AM
Petite correction, j'avais oublié que la variable $batiment_name était un tableau
Code PHP :
<?php
case 'EXPLORE' :
//on fouille le batiment=========================================*
$batiment_name= mysql_fetch_array(mysql_query("select b.name from map a,batiment b where a.x=".$_POST["x"]." and a.y=".$_POST["y"]." and a.elt_type=".$elt_type['BUILD']." and a.elt_id=b.id "));
print 'Vous venez de trouver 100 pièces d\'or dans le bâtiment '.$batiment_name[0].'.<br />';
break;
Donc normalement tu devras avoir le nom de la planète dans $batiment_name[0].