Download Longblog
Posted: Wed Jun 17, 2015 3:58 am
Hello
How can I download a longblog file using a download button? How can I download it in Nubuilder 3?
Can I write you in Spanish?
Nubuilder 2 Code:
// get record from db using parameter passed through runIt() via a hash id
$sql ="SELECT * FROM documentos where doocumento_id='#recordID#'";
nuDebug($sql);
$rs=nuRunQuery($sql);
$fileObj=db_fetch_object($rs);
// set headers
header ("Content-type:$fileObj->archivo_file_type");
header("Content-Disposition:attachment;filename=$fileObj->archivo_file_name");
header("Pragma:private");
header("Cache-control:private.must-revalidate");
// echo file data
echo $fileObj->archivo;
How can I download a longblog file using a download button? How can I download it in Nubuilder 3?
Can I write you in Spanish?
Nubuilder 2 Code:
// get record from db using parameter passed through runIt() via a hash id
$sql ="SELECT * FROM documentos where doocumento_id='#recordID#'";
nuDebug($sql);
$rs=nuRunQuery($sql);
$fileObj=db_fetch_object($rs);
// set headers
header ("Content-type:$fileObj->archivo_file_type");
header("Content-Disposition:attachment;filename=$fileObj->archivo_file_name");
header("Pragma:private");
header("Cache-control:private.must-revalidate");
// echo file data
echo $fileObj->archivo;