Jump to content

mfrac@witsusa.com

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mfrac@witsusa.com's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi: I am attempting to do mulitple file downloads using a web browser. The best I could come up with was down loading 1 file (see code below). How would I download 3 files from-server-to-client? For example download 3 files in succession: my_file1.bmp, my_file2.bmp, my_file3.bmp? Here is my code for 1 file downloading: [code] <?php $filename = "my_file.bmp"; $mimetype = 'image/bmp'; $data = file_get_contents($filename); $size = strlen($data); header("Content--Disposition: attachment; filename = $filename"); header("Content--Length: $size"); header("Content--Type: $mimetype"); echo $data; ?> [/code] Note, Could not post code (being blocked for some reason) with header correctly having a single hyphen (-). Some additonal info: 1. Trying to only use a web browswer, not relying on a ftp. 2. Trying to avoid zipping the files at the server.
  2. I am would like to run the PHP parser on an ARM processor under the Linux platform....is this possible? If so, I am guessing I would take the PHP source code and compile under gcc for ARM...is this correct? Please respond.
×
×
  • 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.