Jump to content

dorjax

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

dorjax's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I am using the following code in a "download.php" file to download with success a file like "archive1.pdf" [code] <?php $fichier = 'directory/archive1.pdf'; $nomFichier = 'archive1.pdf'; $tailleFichier = filesize($fichier); header('Content-Type: application/octet-stream'); header("Content-Length: $tailleFichier"); header("Content-Disposition: attachment; filename=\"$nomFichier\""); readfile($fichier); ?> [/code] BUT... from only one "download.php" file I would like  an extension of this code that can produce a recursive or multiple downloads (archive1.pdf + archive2.pdf...). Is it possible to do that in php? Please if yes a little code as example for me, I don't know php. Thanks!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.