[PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
What exactly does fpassthru do? Does it download it to my server and then shoot it to the browser?? Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Christopher William Wesley
On Thu, 30 Aug 2001, Joseph Bannon wrote: What exactly does fpassthru do? Does it download it to my server and then shoot it to the browser?? (http://php.net/fpassthru) For the file pointer on which it operates, it reads the file pointer until EOF and sends the data to STDOUT. It is very

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
The thing I want to avoid is using my server's bandwidth. Each member gets a profile and can have a photo referenced from their homepage. I use to allow people to upload photos, but I'm getting close to using my 60GB bandwith limit. The people that have photos on geocities couldn't reference a

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Christopher William Wesley
On Thu, 30 Aug 2001, Joseph Bannon wrote: The thing I want to avoid is using my server's bandwidth. Each member gets a profile and can have a photo referenced from their homepage. I use to allow people to upload photos, but I'm getting close to using my 60GB bandwith limit. The people that

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
Dang it! -lol Any ideas how to get around my problem? J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
What if I pass something in the header? Will that work? Joseph -Original Message- From: Christopher William Wesley [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 30, 2001 1:05 PM To: PHP (E-mail) Subject: RE: [PHP] fpassthru (was: fgets) On Thu, 30 Aug 2001, Joseph Bannon wrote