I'm using Zend Framework for an application called Pricetag, and we're thinking of adding support for real-time multi-user editing. Basically the idea is, in each of 4 steps, to be able to share what you're editing with other online users (much like Pivotal Tracker or Trello does).
This is a screenshot of the most complicated (programmatically speaking) of the four pages we have:
Internal HTML is not important (but hey, you can register as a free user if you want to check it out), basically some inputs and the ability to add/delete these blocks ("deliverables" and "tasks") with javascript.
I assume I need some way for the server to notify each online client about changes in the page. I'm already doing a request every time you change something (the white block on the right updates every time you do so), but I don't know exactly how other users would receive that information.
Polling the server every 5 seconds or so seems very very wrong. The site uses PHP, is that enough to do it? Should I interface with a separate script in the server? Is there a Zend Framework module already built that I'm missing even though I asked Google first?