Hi,
Relative newbie here...
Here is the workflow I'm going for:
user (not a drupal admin or even a content developer per se) is offered an upload ability for CSV file (more than that but keeping the xample simple for now). Each row is destined to become drupal content.
Ideally, I'd like to offer the user the ability to review the rows (via a grid with options to remove or edit things), and then insert the rows as drupal nodes, owned by the user (as author, as UID) to ensure others cannot see these records
At minimum right now, however, I would just like to upload the file and present the data in a page (as just rows) to prove it can work. I'm stuck how to do this (do I put the presentation code in the submit handler, do I redirect to a new php page and if so how do I retain the filename information about what is uploaded?). I have demonstrated that I can upload a file. Just have no idea how to process and display it after submitting it...
In general, I wanted to use Feeds, but Feeds CSV is limited to assigning all imported data as either anonymous or a specific user (unless I can stuff $uid in the mapping settings?), so I'm assuming that won't work for me (and most documentation I can find suggests this is more of an admin tool?)