Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/06/2002, 12:49
MikiBroki
 
Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 22 años
Puntos: 8
Maldita función de fichero!

¿Por qué no me funciona este código?...:

if (file_exists("http://127.0.0.1/php/contador.txt"))
{
echo "¡ El fichero existe !";
}


... y sí éste:

if (fopen("http://127.0.0.1/php/contador.txt","r"))
{
echo "se pudo abrir el archivo";
exit;
}