Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/03/2009, 17:18
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: ayuda con texto aleatorio

Porque no pruebas guardarlas mejor en un array:
Código php:
Ver original
  1. $noticias = array(
  2.       'noticia_01.php',
  3.       'noticia_02.php',
  4.       'noticia_03.php',
  5.       'noticia_04.php',
  6.       'noticia_05.php'
  7. );
  8.  
  9. include( $noticias[rand(0, count($noticias) - 1)] );

Saludos