Cara Auto Download File dengan Script PHP
berikut scriptnya :
<?php
header("Content-disposition: attachment; filename=namafile.pdf");
header("Content-type: application/pdf");
readfile("namafile.pdf");
?>
ekstension pdf disesuaikan dengan tipe/ekstensi file nya.
<?php
header("Content-disposition: attachment; filename=namafile.pdf");
header("Content-type: application/pdf");
readfile("namafile.pdf");
?>
ekstension pdf disesuaikan dengan tipe/ekstensi file nya.
Comments
Post a Comment