Como creo una redireccion aleatoria en php?
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
<?php $links = array( 'http://www.google.com', 'http://www.youtube.com', 'http://www.wikipedia.com', 'http://www.tutsnt.com', 'http://www.facebook.com' ); header ("Location: ".$links[rand(0,count($links)-1)]); ?>