perdon por las molestias
el formulario
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="recibir.php" enctype="multipart/form-data">
<p>Seleccione la Imagen:
<input type="file" name="imagen"/>
</p>
<p>Descripción:
<input type="text" name="descripcion" id="descripcion" />
<input type="submit" name="Aceptar" id="Aceptar" value="Aceptar" />
</p>
<p> </p>
</form>
</body>
</html>
<?php
$ruta=$filas['ruta'];
$desc=$filas['descripcion'];
?>
<?php echo $desc;?><br>
<img src="<?php echo $ruta; ?>" width="180" height="214"><br>
<?php }?>
recibir.php
Código PHP:
Ver original<?php
/* print_r($_FILES);
echo'<br>';
echo 'nombre de la imagen: ';
print_r($_FILES['imagen']['name']);
echo'<br>';
echo 'tipo de la imagen: ';
print_r($_FILES['imagen']['type']);
echo'<br>';
echo 'ruta temporal de la imagen: ';
print_r($_FILES['imagen']['tmp_name']);
*/
$conexion=mysql_connect('localhost','root','7777777') or
die('No hay conexión a la base de datos');
$rutaEnServidor='imagenes';
$rutaTemporal=$_FILES['imagen']['tmp_name'];
$nombreImagen=$_FILES['imagen']['name'];
$rutaDestino=$rutaEnServidor.'/'.$nombreImagen;
$desc=$_POST['descripcion'];
$sql="INSERT INTO imagenes (usuario_id,ruta,descripcion) values('".$usuario_id."','".$rutaDestino."','".$desc."')";
if ($res){
echo 'inserción con exito';
}else{
echo 'no se puedo insertar';
}
?>
<META HTTP-EQUIV='Refresh' CONTENT='1; URL=acceso.php'>
con esto sube el usuario las imagenes a una carpeta llamada imagenes y a una tabla llamada imagenes
la tabla
Código PHP:
Ver originalCREATE TABLE IF NOT EXISTS `datos` (
`usuario_id` int(11) NOT NULL ,
`foto_id` int(11) NOT NULL AUTO_INCREMENT,
`ruta` varchar(100) NOT NULL,
`descripcion` text,
PRIMARY
KEY (`usuario_id`
))ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;