[D]Vincent you should do as Xenon says and use the query first option... but also group all of your queries so you don't run like ten when you only need to run one
ex...
PHP Code:
$itms = $DB_site->query_first("SELECT * FROM items WHERE itemid='$id'");
then you can define your stats...
ex.
PHP Code:
$atk = $itms[attack];
$matk = $itms[mattack];
etc...
and thats only part of what you need to setup to acquire what you're looking for

then you will need to set up either userfields or what not to achieve the user end stats...
trust me i've done more then one of these before
g-force2k2