Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/02/2003, 14:24
Avatar de Chuty
Chuty
 
Fecha de Ingreso: noviembre-2002
Ubicación: el bar de la esquina
Mensajes: 609
Antigüedad: 21 años, 5 meses
Puntos: 2
Gracias pero igual me sigue dando e lerror

<?php

$Ifi ='c:\phptest\funcionarios_02\imagen1.png';
$Ifo ='c:phptest\funcionarios_02\imagen2.png';

if (file_exists($Ifi)) {
$lenIfi = filesize ($Ifi);
if( $lenIfi > 0 ) {
// fichero de input
$fhIfi = fopen($Ifi, 'r');
if( $fhIfi ) {
$bufIfi = fread( $fhIfi, $lenIfi );
fclose( $fhIfi );
}

$fhIfo = fopen($Ifo, 'w');
if( $fhIfo ) {
$lenIfo = fwrite( $fhIfo, $bufIfi, $lenIfi );
fclose( $fhIfo );
}
}
}
else {
echo 'no existe la imagen';
}

?>

Warning: fopen("c:\phptest\funcionarios_02\imagen2.png", "w") - Permission denied in c:\phptest\funcionarios_02\leerfichero.php on line 18