Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

cgi.pm images

by jackstraw (Initiate)
on Apr 09, 2002 at 23:13 UTC ( [id://157892]=perlquestion: print w/replies, xml ) Need Help??

jackstraw has asked for the wisdom of the Perl Monks concerning the following question:

I am trying to insert an image into a cgi script with little of no success.help novice

Replies are listed 'Best First'.
•Re: cgi.pm images
by merlyn (Sage) on Apr 10, 2002 at 00:56 UTC
Re: cgi.pm images
by Speedy (Monk) on Apr 10, 2002 at 01:27 UTC

    Another way might be to use a short "here" document in the flow of the CGI statements. For example, to put a graphic at the top, something like the example below will work. Just be sure the EOF (or whatever word you use to start and end the "here" document) starts in the first space and is immediately ended with a line feed.

    #!/usr/bin/perl use CGI; use strict; use warnings; my $q=CGI->new(); print $q->header; print $q->start_html; print <<EOF; <img src="/images/logo.gif" alt="logo" border="0"> EOF [other cgi statements] print $q->end_html;

    Live in the moment

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://157892]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-19 15:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found