27/01/2010, 16:50
|
| | | Fecha de Ingreso: noviembre-2009
Mensajes: 106
Antigüedad: 15 años Puntos: 1 | |
Respuesta: Subir y mostrar fotos en mysql y php usa la funcion
$ruta = "../documentos/";
if (is_uploaded_file($HTTP_POST_FILES['archivo']['tmp_name'])) {
copy($HTTP_POST_FILES['archivo']['tmp_name'], $ruta.$HTTP_POST_FILES['archivo']['name']);
}
suba la foto al servidor y guarde el nombre de la imagen en la base de datos
$nombre = $ruta.$HTTP_POST_FILES['archivo']['name']; |