This is the db table structure I've with me:
id | time | file1 | design1 | process1 | color1| finish1 | file2 | design2 | process2 | color2 | finish2 | file3 | design3 | process3 | color3 | finish3 | comments
file1, file2 and file3 are the names of the files the users have uploaded. The users have the option to upload upto 3 files, and their associated info gets stored in the db. Now, I've to project this info in a table of this form:
| Username | Name | Company | File | Upload Date | Elapsed Time
What i mean is, if a user has uploaded file1, it would occupy one row in the above table. If he has uploaded file2, that'd be another row, and so on till his files are complete. Then on to the other user... # is his id in the db, username and time i can get, its the file colum that's giving me problems. Any suggestions?