khanat-opennel-code/code/web/public_php/api/server/scripts/achievement_script/script/item_grade_script.php

13 lines
260 B
PHP
Raw Normal View History

2014-06-01 19:52:54 +00:00
<?php
function item_grade($item) {
global $DBc;
#echo $item;
$res = $DBc->sendSQL("SELECT grade FROM ryzom_nimetu_item_data WHERE sheetid='".str_replace(".sitem","",$item)."'","ARRAY");
#echo $res[0]['grade'];
return $res[0]['grade'];
}
?>