Hi,
I am trying to display image , but its not working.
I have tried image sourse tag also.
Can somebody guide me with this problem.
Zulfi.
I am trying to display image , but its not working.
Code:
#!C:/Perl64/bin/perl.exe print "Content-type: image/gif\n\n"; print <<EOF; <HTML> <HEAD> <TITLE> Coding Page </TITLE> </Head> <BODY> <P>Image uploading <a href="/cgi-bin/image.cgi?image=create_form.gif"> <a href="/cgi-bin/image.cgi?image=en.gif"> </BODY></HTML> EOF exit;
Code:
#!C:/Perl64/bin/perl.exe print "Content-type: image/gif\n\n"; print <<HTML; <html> <head> <title> A Simple Perl CGI </title> </head> <body> <img src="en.jpg" width="225" height="225" /> <h1>A Simple Perl CGI </h1> </body> HTML exit;
Zulfi.
Comment