I'm making a simple database script that will update around 150+ rows with about 10 columns per row. So far I have it where the user can go and do an update on each row specifically, but they have to update one row at a time. Which can be annoying. Anyway, I need to figure out how to pass 150 x 10 = 1500 form variables (thats like worse case scenario) and have it do an update on the database (it also has a check to validate the data in between, but I'm not too concerned about that right now. My basic question is there a simple way to pass 1500 form variables from one page to another?
I understand the idea behind "don't reinvent the wheel" But currently I cannot use any modules as "I can't" install them.