Mitch Raful ([EMAIL PROTECTED]) writes:
>If you look at my code below you will see I have created two 
>graphs from files.  How can I print both graphs on the same 
>web page???

The question is: "Do you know HTML?"

I am not trying to be sarcastic here. This is primarily an
HTML question (not Perl - although you can certainly use
CGI.pm to write HTML). Below is a trivial example of
HTML displaying two images (centered). The pathnames for
the files must be either absolute or relative URL's
that your web server can serve. That means you need to 
write them out to a directory that your web server can
access for a remote user.

<html>
<head>
<title>Example: two graphs</title>
</head>
<body>
<center>
<img src="plot1_filename" alt="Plot 1">
<br>
<img src="plot2_filename" alt="Plot 2">
</center>
</body>
</html>

--
Mike Arms

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to