I was wondering, since I’m making a GPT Script, I need an installation system to insert database queries, and create tables.
I know how to do that, but the problem is I want to show the progress of creating files, registering the product to my server, with a progress bar, so the user knows how much longer they’ll be waiting.
How can I do this?
PHP runs server-side, jQuery runs client-side. You would have to call a server-side script repeatedly, either to check the number of rows that have been inserted or tables that have been created, etc…or to tell it to perform another step, updating your progress bar on each call.
Either way is a performance hit, so probably not a good idea.