Me sale este error al intentar leer un archivo
Warning: fopen(c:\xampp\htdocs\xampp\P7\Testimonios.txt) [function.fopen]: failed to open stream: No such file or directory in C:\xampp\htdocs\xampp\P7\testimonios.inc on line 18
$fp = fopen("c:\xampp\htdocs\xampp\P7\Testimonios.txt"," r");
//Leemos linea por linea el contenido del archivo
while ($linea= fgets($fp,1024) && $i<$aleatorio)
{
echo $linea;
}
Pienso que el fallo esta en la ruta pero no se porque no me la coge bien
Ni asi ../Testimonios.txt
Ni asi Testimonios.txt
Ni asi c:\xampp\htdocs\xampp\P7\Testimonios.txt
Gracias