I'm running php/mysql and have a pretty complex html-table where every cell can be edited. Some of them just text while clicking on other cells brings up select menus, radio buttons etc.
When a user makes a change in the table, all the other users need to refresh their browser to see the change.
1) Is there an easy way to make my table "pushable" so new content shows up for other users when cells are edited?
or
2) Can I run a javascript every minute or so that will fetch the latest content in the background and compare it to the current page and if anything has changed perform an update?
Thank you for ideas