How to use server side pagination if i have multiple queries and want to display the result in table
How to use server side pagination if i have multiple queries and want to display the result in table
i have large database data , and i am querying from different tables and want to get results in different arrays after calculations then i want to combine the data and display that in one table ?
something like that;
$query = select everything from table one ;
$query2 = select userid from $query result;
$resultant query = select something from another table where date from the above result and userid from $queryone array;
Display in data tables with server side processing ???
Appreciate if some one help.