How would I create a script that would allow for users to enter results of a log file?
Ideally, it would have a text box for entering the results. On submit, the script will look through the input in the box, line by line and store the results on the server (say a file called, results.txt). Also along with the text box on entry, there would be a drop down list that has all the user1's names that are apart of the site (this doesn't need to be dynamic driven).
The results would be in the format of:
"[user2] sometext [number] moretext [user2] last bit of text."
Because of the dropdown box, we know which user (user1) is submitting the results. And which user (user2) the results are effecting. If there were someway to count how many results are given by user1 and affecting user2 and display statistics for all of the users.
I know this probably shoulds really confusing. I have a vision on what I'd like to do, but I don't know how to code it :/