tags:

views:

514

answers:

3

Can someone lead me down the right way to make a live notifications

e.g Knowing when a new Row in Added in Mysql

know if a php file has changed ???

how should i go about it?

+3  A: 

You could routinely check the server for updates using setInterval(), or you could employ long-polling with javascript. The benefit of setInterval() is that it doesn't keep connections opened on your server for too long, but you may have updates during the 'downtime' between server-calls. Long-polling will give you near-instant updates, as it waits with the connection opened until it receives new information. But obviously, the down side is that you've got connections staying opened all over the place.

Routine Checks...

setInterval(function(){
  $.get("updates.php", {}, function(results){
    if ($(results).length) {
      $("results").each(function(){
        // do something with update messages
      });
    }
  });
}, 30000); // Every 30 seconds.

Long Polling with PHP/jQuery Example:

You can find an example of long polling with PHP and jQuery at http://blog.perplexedlabs.com/2009/05/04/php-jquery-ajax-javascript-long-polling/

Jonathan Sampson
Great answer. Worked a treat with what I was trying to do.
Liam
A: 

Trigger + CRON job ? :)

RandomNoob
+1  A: 

You can use db triggers to watch for changes in certain tables and insert notification data into a new table. Then. query that db table periodically with Jquery and ajax.

Workflow:

  1. Create trigger that watched table users for inserts, updates, and deleted
  2. Once users is altered, the trigger inserts a new record into notifications detailing what was changed
  3. Using a periodical updater, check the notifications table for new records and display them to the user.

This simple workflow might not be as easy to implement as you would hope but it would get the job done in an efficient manner.

Mike B