This is a discussion on streaming within the PHP Language forums, part of the PHP Programming Forums category; Hallo, I want to download 65 jpg files to the user in my website. On the user site there must ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hallo,
I want to download 65 jpg files to the user in my website. On the user site there must be a application that receives the jpg files. The apllication to convert JPG to AVI I already made. But I don't know how to get the files to the application on the user site. How can I start the application on the user site and read the 65 jpg files. Thanks |
|
|||
|
offie <offie@vdcinfo.nl> wrote:
> I want to download 65 jpg files to the user in my website. On the user > site there must be a application that receives the jpg files. The > apllication to convert JPG to AVI I already made. But I don't know how > to get the files to the application on the user site. How can I start > the application on the user site and read the 65 jpg files. This is IMHO a clientside problem, so one fact you forgot to mention: what is the client running? If it's not PHP you are in the wrong group, else you should look into fopen/fread/fwrite/file etc. -- Daniel Tryba |
|
|||
|
On 13 Nov 2003 03:16:05 -0800, offie wrote:
> Hallo, > > I want to download 65 jpg files to the user in my website. On the user > site there must be a application that receives the jpg files. The > apllication to convert JPG to AVI I already made. But I don't know how > to get the files to the application on the user site. How can I start > the application on the user site and read the 65 jpg files. > > Thanks Does it go like: USER's JPEGs ------> Your Site -------> JPEG-to-AVI or JPEGs on YOUR site -------> JPEG-to-AVI ------> User's Machine or something completely different? |