Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/07/2008, 21:12
Proguri
 
Fecha de Ingreso: abril-2008
Ubicación: Montevideo - Uruguay
Mensajes: 156
Antigüedad: 16 años, 6 meses
Puntos: 5
Respuesta: ayudenme con este codigo php

Hi !

Quizas te sirva esto:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Frases | Aleatorios |</title>
</head>
<?php
    $arch 
"frases.txt";
    
$file fopen($arch"r");
    
    
$linea = array();
    
$i 0;
    
    while(!
feof($file)) {
        
$linea[$i] = fgets($file);
        
$i++;
    }
    
    
$l_num count($linea) - 1;
    
    
$azar round(rand(0$l_num));
?>
<body>
La frase aleatoria del dia es: <h2><?php echo $linea[$azar]; ?></h2>
</body>
</html>
Tenes que tener un archivo creado, llamado "frases.txt" en donde quieras que aparezca, despues solo le agregas y se eligen al azar :D

(Te recomendaria hacerlo con una base de datos, es mas facil que andar subiendo el archivo cada vez que pones frases)

Espero te sea util ! :)

-ByE-
__________________
--
Mi Portfolio Online! Visitalo!
--