in reply to Error reading image from perl cgi script into HTML
First, the HTML page:
<html> <head> <title>Test page</title> </head> <body> <H1>My test page</H1> My counter below:<BR> <IMG SRC="/cgi-bin/my-count.pl"> </body> </html>
And then you replace my-count.pl with something that actually counts.#!C:\Progra~1\Perl\bin\perl use CGI; $co=new CGI; print $co->header(-type=>'image/jpeg'); $size = stat("counter.jpg")[7]; open (FILEHANDLE,"<counter.jpg"); read FILEHANDLE,$imagedata,$size; close FILEHANDLE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Error reading image from perl cgi script into HTML
by Anonymous Monk on Oct 13, 2002 at 23:02 UTC | |
by true (Pilgrim) on Oct 14, 2002 at 02:08 UTC |