<?php
/**
 * GetRealMetal.php
 * @version 1.0
 * @copyright MaximoMinial for Xnova's community
 * 
 */

define('INSIDE'  , true);
define('INSTALL' , false);

require_once dirname(__FILE__) .'/common.php';

//Consultation DB
$QueryMetal = doquery("SELECT planet.metal
						FROM game_planets AS planet
						INNER JOIN game_users AS user ON user.current_planet=planet.id
						WHERE user.id={$user['id']}");

while ($planetMetal = mysql_fetch_assoc($QueryMetal)) {
        $planetMetalArray[] = $planetMetal['metal'];
}
$implodeMetal = implode ($planetMetalArray) ;
echo stripslashes($implodeMetal) ;

?>