I have multiple text files, which are simple reports, that must be reviewed and validated by users. I would like to pull the report into an html div element then add form fields at absolutely positioned locations.
For example, the report may have monthly sales by sales rep:
Jan Feb Mar
13 9 11
I want the user to see that, and an input type="text" element after the row of sales numbers. The user would have to enter their initials to confirm the numbers. At that point, I would actually modify the text file to show their initials (as well as set some flags in the database).
I am looking for some ideas - premade solutions please. The site is built using PHP and JQuery, with some cgi perl scripts as well. So solutions involving any of those would be great.
Thanks.