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

NexGenNexGen Posts: 1Questions: 1Answers: 0

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;

<?php echo Some Calculation ;?>

$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.

This discussion has been closed.