I am fairly new to building sites with PHP and MySQL but am trying to achieve the following:
During an online enrollment process, a promoter is able to enroll up to 20 'fighters' for medical testing services. Each fighter's information is stored in SESSION as $_SESSION['FnumAttr'] where num is the number and Attr is the attribute being defined (first name, last name, etc). At the end of the enrollment, I need ALL of the data entered stored in a MySQL DB and eventually sent on elsewhere. A manager can enroll from 1 to 20 fighters at a time and any thing less than 20 will just not have data (null) within its cell.
I am currently building out the DB within MySQL but if I have to enter 20 attributes for 20 different fighters this may take all day (not to mention the "INSERT INTO" call I'll have to make at the end of all this).
Is there a way to create these fields more quickly than going line by line and adding: F4_Firstname, type text, length, allow null, etc..?