Posteriormente a buscar en diferentes repositorios y sitios finalmente nos hemos encontrado la resolución que te enseñaremos más adelante.
Ejemplo: al hacer clic en descargar directamente el archivo pdf en php
Download File Using PHP – Server Side Script
We will need to create PHP script file and pass the file name in the href attribute that we want to download as you can see below:<a href="download.php?file=SampleFile.pdf" target="_new">Download File</a>PHP Script
if(isset($_GET['file']))$file=$_GET['file'];if(file_exists($file)&&is_readable($file)&&preg_match('/.pdf$/',$file))header('Content-Type: application/pdf');header("Content-Disposition: attachment; filename="$file"");readfile($file);
The above file will read the file name and trigger to force download. This example will work on all browsers
Si haces scroll puedes encontrar las notas de otros administradores, tú incluso tienes la opción de mostrar el tuyo si te apetece.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)