Dale W wrote:
> 
> If I run the script from my browser, it works great.  When I call the CGI
> file from my SHTML file, it just dumps all of the text from the CGI file
> into the brower.  Here is a simple example:
> 
> -----MY.SHTML
> <!--#include virtual="/cgi-bin/my.cgi"-->

I don't know something about "virtual" scripts.
However, 
> 
> -----MY.CGI
> #!/usr/bin/perl
> print "content-type:text/html\n\n";
         ^       ^    ^
The standard way is to write
print "Content-Type: text/html\n\n";

> 
> print "<b>This is BOLD</b><br>";
> print "This is not.<br>";
> 
> ...

Best Wishes,
Andrea

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to