Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/01/2013, 13:59
Avatar de jcxnet
jcxnet
 
Fecha de Ingreso: octubre-2005
Ubicación: Perú
Mensajes: 784
Antigüedad: 19 años, 3 meses
Puntos: 56
Respuesta: como realizar consulta cada determinado tiempo

Cita:
Iniciado por h2swider Ver Mensaje
Podrias hacer un jax que se llame cada 5 minutos. Esta tecnica se llama polling de datos.

Código PHP:
Ver original
  1. var inter = function(){
  2.              
  3.     setInterval(
  4.         function() {
  5.             poll()
  6.         }, 1000 * 60 * 5);
  7.  
  8. }
  9.    
  10. var poll = function(){
  11.                        
  12.     $.ajax({
  13.         url: 'ajax.php',
  14.         timeout: 10000,
  15.         dataType: 'JSON',
  16.         success: function(respuesta){
  17.             console.log(respuesta);
  18.         }
  19.     });
  20. };
  21.  
  22. inter();
ajax.php tendría el código que te muestra el último registro insertado.
__________________
►I'm a devil on the run ♂
Jcxnet.com
*Keep It Simple **