descarga de archivos con PHP desde PostgreSQL

Rodrigo Fuentealba darkprox en gmail.com
Mie Sep 20 12:24:30 CLT 2006


Me contesto...

> header('Content-type: '.$rs->fields['MIME']);
> header('Content-Disposition: attachment; filename='.$rs->fields['NAME']);
> header('Cache-Control: no-cache, must-revalidate');
> header('Pragma: no-cache');

Basta con:

$nombre = str_replace(' ','_',$rs->fields['Nombre']);

header('Content-Type: '.$rs->fields['MIME']);
header('Content-Disposition: attachment; filename='.$nombre);
header('Content-Length: '.$rs->fields['Tamano']);

$db->StartTrans();
echo($db->BlobDecode($archivo));
$db->CommitTrans();

-- 
Rodrigo Fuentealba Cartes
Registered User 387639 - http://counter.li.org


Más información sobre la lista de distribución PHP