many thanks for your guidance.
I'm not familiar with "json_encode()".
I do not know how to use it in my project.
Below is the TAB style i used. It uses javascript to toggle "on/off".
<div class="tab_mo">
<div id="tab_mo_1">tab1content</div>
<div id="tab_mo_2" style="display:none">tab2content</div>
<div id="tab_mo_3" style="display:none">tab3content</div>
<div id="tab_mo_4" style="display:none"><a href="/">tab4content</a></div>
</div>
I'm using jquery to perform table filter, sort, search & paginate.
My problem now is I'm not able to filter, sort, search, paginate across all the TAB at the same time.
I've tried inserting a table within each tab but failed.
eg. When i sort column 1 data in TAB A, the column data in TAB B, TAB C, TAB D ideally should be sorted as well. But it did not turn out this way.
Any suggestions, thanks?