I can show multiple table data in a table by custome controller, model, view. but I need to know there is any way to show multiple table data in a table by GC?
like:
user_info table:
id, name, username, password
student_grade:
id. user_info_id, subject, grade, cgpa
student_info:
id, user_info_id, stud_name, fathers_name, present_address, permanent_address
there are three tables named user_info, student_grade, student_info and so on and those table data inserted seperately or custom registration form. but I want to show all the inserted data for that user_info_id in one table from diferent table at a time by using GC.
like:
all_data_table
id, name, username, password, subject, grade, cgpa, stud_name, fathers_name, present_add, permanent_add
is it possible?