Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/01/2014, 14:02
guillebe
 
Fecha de Ingreso: enero-2014
Mensajes: 2
Antigüedad: 10 años, 10 meses
Puntos: 0
Rotador de noticias con BD y JS no me muestra datos

Buenas tardes comunidad, mes dirijo a ustedes ya qeu estoy bastante perdido. Con el ejemplo de mi clase (que no se conecta a una base de datos) y con lo que he leido en este foro en otros temas, he llegado al siguiente código:

Código:
<script language="javascript" type="text/javascript">
noticiero=new Array();

<?
	while($row=mysql_fetch_array($consulta))
	{ 
?>
		noticia("<?=$row['pathFotoNoticia'];?>","<?=$row['titulo'];?>","<?=$row['pathNoticia'];?>","<?=$row['link'];?>");
<?
	}
?>


espera=2 //Segundos de espera

function noticia(imagen,titulo,texto,enlace)
{
	this.imagen=imagen;
	this.texto=texto;
	this.titulo=titulo;
	this.enlace=enlace;
}
function mostrar_campo(id_campo)
	{
	return document.getElementById(id_campo);

}
function mostrar(a)
{
	mostrar_campo("imagen_noticia").src=noticiero[a].imagen;
	mostrar_campo("titulo_noticia").innerHTML=noticiero[a].titulo;
	mostrar_campo("texto_noticia").innerHTML=noticiero[a].texto;
	mostrar_campo("enlace").href=noticiero[a].enlace;
}

b=0;
function cambiar()
{
   if (b<noticiero.length) 
   {
	  b++;
   }
   else 
   {
	  b=0;
   }

	mostrar(b);
}

// Cada "espera*1000" milisegundos
// cambia a la siguiente noticia
setInterval("cambiar()",espera*1000);

</script>
No me dá ningún error al ejecutar, pero no me muestra nada :(
Espero que me puedan ayudar, muchas gracias desde ya!!