I try to download a pdf in php but I can do it? Can anyone help me?
I try do it with this code but it doesn't works.
$file ="cv0.pdf";
$filename = "cv0descargado.pdf"; // el nombre con el que se descargara, puede ser diferente al original
header("Content-type: application/octet-stream");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=\"$filename\"\n"); readfile($file);