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

13 lines
No EOL
260 B
PHP

<?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'];
}
?>