
27/03/2007, 09:21
|
| | Fecha de Ingreso: diciembre-2003
Mensajes: 474
Antigüedad: 21 años, 2 meses Puntos: 5 | |
ruta temporal Hola chicos
tengo este código para subir imágenes a una bd. pero solo me muestra la ruta temporal, no la imgen ¿Qúe puedo hacer?
GRACIAS:
$path = "fotos";
/*If you don'r know the path just make a small test
create a php file with just <?echo "teste;?> and see the path of the error so copy and paste here :) */
$ruta = $path."/";
while (list ($chave, $valor) = each ($_FILES['foto']['tmp_name'])) {
if (move_uploaded_file($_FILES['foto']['tmp_name'][$chave], $ruta . $_FILES['foto']['name'][$chave])) {
print "Archivo cargado en el servidor\n";
//include('ok.php');
} else {
print "El archivo no pudo guardarse\n";
}
} |