Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
408 views
in Q2A Core by

please tell me how to get user title based on points from php array,  is there any function for getting title???

here is my code but there is not TITLE in array list:

            $handle= qa_get_logged_in_handle();

            $user=qa_db_select_with_pending(
                qa_db_user_account_selectspec($handle, false),
                qa_db_user_profile_selectspec($handle, false)
            );
            $badge = qa_badge_plugin_user_widget($handle);
            
            print_r($user);

 

Please log in or register to answer this question.

...