现在我在数据库调用chat_users
中有一个表,并且在列调用user_level
中有一个表,我需要修改此函数以显示user_level
列。
这是我的功能。
function curRanking($txt, $color, $icon){
return '<i title="' . $txt . '" class="' . $color . ' fa fa-' . $icon . '"></i><p style="font-weight: bold;font-size:7px;color:#3a3a3a">Lev. ' . `user_level` . '</p>';
}