Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 502 Bytes

0274.md

File metadata and controls

21 lines (18 loc) · 502 Bytes

Consider the following PHP script:

header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename='2.pdf'");
readfile("1.pdf");

What will be the default name of the downloaded pdf?

  • A) 2.pdf
  • B) 1.pdf
  • C) The script will throw an error message.
  • D) NULL
Answer

Answer: A