Ver Mensaje Individual
  #30 (permalink)  
Antiguo 17/07/2008, 10:23
margarita02
 
Fecha de Ingreso: mayo-2007
Mensajes: 23
Antigüedad: 17 años
Puntos: 0
Respuesta: Re: descargar archivos de BD MySQL

Cita:
Iniciado por GatorV Ver Mensaje
Prueba este código:
Código PHP:
mysql_connect('localhost','user','9999')or die ('Ha fallado la conexión: '.mysql_error());
mysql_select_db('registro')or die ('Error al seleccionar la Base de Datos: '.mysql_error());

$id $_GET['id'];
$qry "SELECT titulo, tipo, contenido FROM archivos WHERE id=$id";
$res mysql_query($qry) or die( "Error en Query: $qry, error: " mysql_error() );
$row mysql_fetch_row$res );
$tipo $row["tipo"];
$contenido $row["contenido"];
$titulo $row['titulo'];

header"Content-Disposition: attachment; filename=".$titulo."");
header"Content-type: application/octet-stream" );

print 
$contenido
Saludos.