I am trying to have two files auto downloaded when an url is clicked. I have found the solution in this post How to force file download with PHP and using this code <?php header("Location: http://example.com/go.exe"); ?>
My goal is to have 2 files downloaded by extension type rather than having full filename url because filenames would be changed every 1-2 days but extensions would always remain same. The file extensions are .xls and .pdf. I looked into this post - How to force download different type of extension file php but didnt see the actual code I am looking for. Any guidance is appreciated. Thank you.