I have a system where people would upload something, then a single link would identify the uploaded file and display for other users. Each file would have its own page and they will have a comment box. Now I have the general idea of how to create the PHP script and the SQL I just have one problem. What would be beter? storing up all of the comments for each file in a single row, and adding a delimiter for each new comment? Or creating a new row for each comment input but having the same reference to the file? I would prefer if each comment had its own row in the SQL but then it can easily grow up to thousands of entries per day and im not sure if that's efficient.
Which approach from the two is the most efficient?