in reply to Image Uploading

hi. thanks for the reply. there's a problem though, it doesn't create the image correctly. it comes out as an invalid image. could it be that i have to do something special since i'm running it on windows 95? ralph :)

Replies are listed 'Best First'.
(ar0n: binmode daniel san) RE: Re: Image Uploading
by ar0n (Priest) on Oct 08, 2000 at 02:31 UTC
    Try calling binmode before you start printing:
    binmode FILEHANDLE; print $data while(read(FILEHANDLE, $data, 1024));

    [ar0n]