in reply to Re: mod_perl2 module
in thread mod_perl2 module

i have tried $| = 1; and print "<font >© 2006 All Rights Reserved.</font>"; still doesnt display.

it is a windows machine.

Replies are listed 'Best First'.
Re^3: mod_perl2 module
by Anonymous Monk on Apr 02, 2006 at 15:17 UTC
    found a cure for my problem

    END $p->print($q->h1('hey')); $p->print (<<'END');


    the print function within Apache2::RequestIO (); allows me to use CGI.pm functions.