Even figuring out how to ask this question is difficult, so here goes.
I have a basic web application that (overly simplified) takes names, adds them to an html table and enters them into a MySQL database table. This is done in a very traditional way using PHP/Ajax/jQuery type coding and shows the new entry without a screen refresh.
I'm not right now interested in concurrency type issues. What I need to know is how to show an update one person makes in his web page on the other persons page without either doing a screen refresh.
So if me and Jim are both on the same web app but in different physical locations and I add a name to the table, I want that name to appear immediately on his screen too. And of course should he add a name, I want to see it on my screen immediately as well.
I'd like to do this without a complete screen refresh.
How is this done?