This topic is locked

Copy the LIST PAGE content to a table

6/16/2022 8:45:54 AM
PHPRunner General questions
M
Mauipm author

Hi all,
I need to insert the content of a LIST PAGE : all row(record) and all column (field), to a table.
I don't find how to "loop" through all the rows and write the content to the destination.

Any suggestion?
Thanks in advance

Mauro

mbintex 6/16/2022

if records are marked/checked, then you can loop through them by

https://xlinesoft.com/phprunner/docs/button_getnextselectedrecord.htm

With the database API you should then be able to write the data to any table, for example with db::insert

https://xlinesoft.com/phprunner/docs/db_insert.htm

M
Mauipm author 6/17/2022

Thanks mbintex, it works fine. The only problem is that it can't be really used if you have many rows (thousands) that have to be displayed (and checked) in the same page
Mauro