RE: [PHP] Writing a GIF/JPG Image

2002-07-02 Thread joakim . andersson
2 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Writing a GIF/JPG Image > > > Well, hehe I'm kinda just learning it all, here is what I > really wanna do: > I have a table in a MySQL database that will contain the gif data in a > column. I want to be able to read that

Re: [PHP] Writing a GIF/JPG Image

2002-07-02 Thread Richard Lynch
>OK, i made this image.php file: >start--- > $theFile = ""; > > $fcontents = file ('Logo.gif'); > while (list ($line_num, $line) = each ($fcontents)) { > $theFile .= $line."\n"; > } > > echo $theFile; >?> >-end- > >and I have an html file that d