Hi,
    Is this the thing you want?  (otherwise please describe your problem more elaborately.)
 
print "Content-Type: text/html\n\n";
 
print "html message here";
 
print "<IMG SRC='images.gif'>\n";
 
print "html message here";
 
Bye
Muthu S Ganesh
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kiran Kumar.M
Sent: 16 February 2001 13:36
To: modperl
Subject: General Question

hi,
    I would like to know what header to print to view this on the browser, if text/html is entered the image is not displayed and if image/gif is entered  the image does not appear , thanks in advance
 
Kiran
 
ps: if this is not the right place to ask this question please tell me where i can find help
 
 
open(F1,"images.gif") ||errorhandler;
 
while(<F1>) {
        $imgcont .=$_;
}
close(F1);
print" html message here";
print $imgcont;
 
print" html message here";

Reply via email to