1.
<?php
// Bir PDF çıktılayacağız
header('Content-type: application/pdf');
// Dosya ismi indirilen.pdf olsun
header('Content-Disposition: attachment; filename="indirilen.pdf"');
// Okunacak PDF dosyası
readfile('original.pdf');
?>2.
$newname = 'ABC'; // buraya istediğin yazıyı yazarsın
$newname.= substr(uniqid(), 0,5);