Estimados, estoy haciendo un sistema de reporte médicos, necesito proteger esos archivos y que estos solo puedan ser descargados mediante un script php que tengo, se los dejo:
Código PHP:
Ver original<?php
$file = "the_file";
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download"); header( "Content-Disposition: attachment; filename=".basename($file));
header( "Content-Description: File Transfer");
?>
Saludos