Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/09/2011, 12:34
Avatar de andresdzphp
andresdzphp
Colaborador
 
Fecha de Ingreso: julio-2011
Ubicación: $this->Colombia;
Mensajes: 2.749
Antigüedad: 13 años, 4 meses
Puntos: 793
Respuesta: Simplificar Array

No creo que sea por el array... Ten en cuenta que el array va de cero a 13 y lo tienes en 14 y no necesitas comillas.

Código PHP:
Ver original
  1. <?php
  2. $numero = 13;
  3. $array = array(4, 6, 8, 10, 12, 14, 16, 18, 20, 23, 30, 32, 34, 36);
  4. $rand = rand(0, $numero);
  5. echo "<script type='text/javascript'>
  6. location.href = \"http://elektros.net/?id=" . $array[$rand] . "\"
  7. </script>";
  8. ?>
__________________
Si sabemos como leer e interpretar el manual será mucho más fácil aprender PHP. En lugar de confiar en ejemplos o copiar y pegar - PHP