Dynamic loading

Hi! There is a query to the mysql database. it returns> 83000 rows. Tell me how to transfer the data dynamically and insert it into datatable. on the site data is loaded like this - webix. $$ (“artsku”). load (GET request)

Hello,
I hope this information will help you to solve this:
https://docs.webix.com/desktop__plain_dynamic_loading.html

Thanks you. The documentation says that the response from the server should be like {
“data”: [
{“id”: 1, “package”: “acx100-source”},
{“id”: 2, “package”: “acx200-source”}
],
“pos”: 0,
“total_count”: 999
}
My server gives SELECT from the database as arrey. how do i add “pos” and “total_count”?

There can be another solution for remote services that do not provide “pos” and “total_count”: https://blog.webix.com/dynamic-loading-fetching-unlimited-number-of-records-from-server-side/

Still, even in this case the server needs to interpret “start” and “count” parameters from subsequent loading requests to send the new portion of data.

Thank you. Do you have an example of an PHP code on the server?