> > [- print WEB "<h3>blablabla</h3>" -] > > You need to print to OUT inside your Embperl code
That works too, except when I do this in a external package, e.g. foo/bar.pm package Foo::Bar; [...] sub say1 { print OUT "DEBUG1: "; printf OUT @_; print OUT "\n"; } __END__ saytest.htm [- use Foo::Bar qw(say1); sub say2 { print OUT "DEBUG2: "; printf OUT @_; print OUT "\n"; } -] <h3>[- say1 "foo" -]</h3> <h3>[- say2 "bar" -]</h3> This will print only <h3></h3> <h3>DEBUG2: bar</h3> Is the file descriptor OUT not accessible from the package ? -- Hartmut Pilch http://a2e.de/phm/adv/embperl/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]