Ver Mensaje Individual
  #40 (permalink)  
Antiguo 26/07/2013, 13:23
santi2892009
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: sitema de mensajeria duda?

pos seguimos en las mismas,puse estos archivos y nada de nada;
index.php;

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script>
setTimeout(function cargar (){
$("#destino").load("llamada.php");
},1000);
</script>
</head>

<body>
<div id='conteMensaje'></div>

</body>
</html>
-----------
llamada.php¨:
<?php
$host = "localhost";
$user = "root";
$passw = "";
$db = granja ;
$sql = "SELECT * FROM mensajes WHERE visto = no";
$rs= mysql_query($sql);

$mensajes = mysql_num_rows($rs);
if ($mensajes != 0){
echo "<img src='images/sobre_abierto.GIF' />";
}else{
echo "<img src='images/sobre.GIF' />";
}
?>
----alguna sugerencia ...algo falla y yo creo q falta ajax.js nop?----