output!!!!

                     56711265
                56706919
        Content-Type: text/html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML><HEAD><TITLE>Daten</TITLE>
</HEAD><BODY><H2>Query</H2><H3>ras</H3><HR SIZE="1" NOSHADE><H2 STYLE="color:blue">Autor:  <I>hallo</I></H2></BODY></HTML>

The problem is i always write NOT in the Htmlcode!
Just before it starts or behind it ends!how can i solve this problem?
i did it that way!
  print
   $cgi->start_html('Daten'),
  $cgi->header(),
 $cgi->h2('&starte_prog()'),

        $cgi->h3($eingabe),
 $cgi->hr({-noshade => undef, -size => '1'}),
   $cgi->h2({-style => 'color:blue'}, "Autor: ",$cgi->i($Autor)),
 
 $cgi->end_html();

 

I'm sure someone with more knowledge can explain the "why" better than I could but an answer should be...

<snip>

  print
   $cgi->start_html('Daten'),
  $cgi->header();

 

print $cgi->h2('&starte_prog()');

 

#

# or

#

my $results = &start_prog();

print  $cgi->h2($results);

#

print    $cgi->h3($eingabe),
 $cgi->hr({-noshade => undef, -size => '1'}),
   $cgi->h2({-style => 'color:blue'}, "Autor: ",$cgi->i($Autor)),
 
 $cgi->end_html();

</snip>

 

jwm

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>

Reply via email to