Upload and Display User-Content Same Page

I need a webpage that allows users to upload a title and link and then be able to display this information on the same page when they submit but not be able to edit any of the content after submission.

I have a short user-input section of title and link with a submit button. Further down the page I have a table meant to display the user-submitted content. My data base permissions allow for both Read and Write.

My problem is if my database permissions are set to Read and Write and my dataset is the same, users will be able to edit all content on the page. If I set my dataset to Write only then I cannot see the content on the page. If I add a second dataset with permission set to Read only the table that displays my content does not update when content is submitted. Help please I do not know what I am missing.

You can add 2 datasets - set one to WRITE-ONLY and use it for the user input and the other to READ-ONLY and use it for display.
On submit of the first dataset, you can refresh() the second one.