Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/01/2014, 17:02
Avatar de djaevi
djaevi
 
Fecha de Ingreso: marzo-2007
Ubicación: Moreno, Buenos Aires
Mensajes: 400
Antigüedad: 17 años, 8 meses
Puntos: 47
Respuesta: Rotador de noticias con BD y JS no me muestra datos

Como mucho ( y dudo que sea posible ) podrias imprimir todas las noticias en el array javascript y luego recorrerlo aunque te convendria crear un array de objetos, algo asi:

Código Javascript:
Ver original
  1. noticiero=[

Código PHP:
Ver original
  1. <?php
  2.  
  3. $array_output = "";
  4.  
  5.     while($row=mysql_fetch_array($consulta))
  6.     {
  7.  
  8. $array_output .= "{";
  9. $array_output .= " \"pathFoto\": \"" . $row['pathFotoNoticia'] . "\",";
  10. $array_output .= " \"titulo\": \"" . $row['titulo'] . "\",";
  11. $array_output .= " \"pathNoticia\": \"" . $row['pathNoticia'] . "\",";
  12. $array_output .= " \"link\": \"" . $row['link'] . "\"";
  13. $array_output .= "},"
  14.  
  15.  
  16.     }
  17.  
  18. $array_output = substring($array_output,0,strlen($array_output)-1);
  19.  
  20.  
  21. ?>

Código Javascript:
Ver original
  1. ];

Podes probar con algo asi...