The Problem: I have a webpage with two frames - left_frame and right_frame. The left frame is used to submit feedback. It has text boxes for name and email address, a textarea for the actual feedback and a Submit button. On clicking Submit button the feedback is saved to a file. right_frame is used to read this file and display the feedback.
Now this is what I want to do: Every time a user enters his feedback and clicks on Submit button, the feedback should be saved to the file and at the same time the right frame should refresh to display the old feedback + the one submitted just now. How do I do this???