Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/06/2017, 06:52
Avatar de djboro88
djboro88
 
Fecha de Ingreso: junio-2009
Ubicación: Valencia
Mensajes: 180
Antigüedad: 14 años, 10 meses
Puntos: 2
Respuesta: No muestra info de la BBDD

Solucionado !!
Código HTML:
Ver original
  1.     <title>jQuery Load</title>
  2.     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
  3.  
  4.    
  5.      <script>
  6.         function cargar(){
  7.             var url="mensajes.php"
  8.             $.ajax({  
  9.                 type: "POST",
  10.                 url:url,
  11.                 data:{},
  12.                 success: function(datos){      
  13.                     $('#chat').html(datos);
  14.                 }
  15.             });
  16.         }
  17.        
  18.         setInterval( "cargar()", 5000 );
  19.      </script>
  20.  
  21.    
  22. </head>
  23.  
  24.     <div id="chat"></div>
  25.  </body>
  26. </html>

Última edición por djboro88; 07/06/2017 a las 07:06