I need to process an xml file and insert some data accordingly to my database. Since the XML file contains close to 10000 lines and there could be some thousand rows to insert to database I'm afraid my script will exceed max execution time.
I've seen some scripts that to prevent this, they divide the whole process into smaller steps and the script refreshes the page every few seconds and it continues whatever it's doing.
I just wonder how it's done?