26/02/2003, 14:24
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: el bar de la esquina
Mensajes: 609
Antigüedad: 22 años 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 |