How can I implement the comet / server push design pattern using PHP and Javascript? Essentially what I would like is something like this:
- User clicks a 'submit' button
- Javascript shows a message like 'Processing 0 / 100 items'
- Whenever a new item is processed, the php / server pushes out an update, and the javascript changes the message to 'Processing 2/100 items, 3/100 items, and so on'.
How can I do this? Any links/info please?