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

 

In qa-page-user this code gets a list of all favorite questions.
 
// Get lists of favorites for this user
 
@list($questions, $users, $tags, $categories)=qa_db_select_with_pending(
qa_db_user_favorite_qs_selectspec($userid),
QA_FINAL_EXTERNAL_USERS ? null : qa_db_user_favorite_users_selectspec($userid),
qa_db_user_favorite_tags_selectspec($userid),
qa_db_user_favorite_categories_selectspec($userid)
);
 
 
Now I would need that same thing for a full questions list to later filter that for userid and other
 
Any help is very welcome.

Please log in or register to answer this question.

...