Hello
I need to find a place to put use statements in. Where is the right place?
I tried to put them in the const.epl:
[-
use lib;
use another_lib;
use strict;
use Croak;
-]
and from base.epl i call
[-
Execute('./const.epl');
-]
But this do not work:
196]ERR: 32: Line 8: W
> I guess it doesn't let me Execute the file at all.
> suppose foo.epl required that empty form fields exist in %fdat. for the
> following files:
>
> .htaccess:
>
> PerlSetEnv EMBPERL_OPTIONS 8192
>
>
> bar.epl:
> Execute('foo.epl');
>
> of course foo.epl wouldn't have access to empty fields,
> I have this piece of code:
> [-
> ...
> print OUT "QRY:" . $udat{query};
> ...
> -]
>
> But the output is NOT strong ( tags are skipped):
>
Set optRawInput or write '\QRY:\' .
If you don't use a high level html editor, you should set optRawinput
anyway, to avoid such problems
I have this piece of code:
[-
...
print OUT "QRY:" . $udat{query};
...
-]
But the output is NOT strong ( tags are skipped):
Here`s the log:
print OUT "QRY:" . $udat{query};
I don`t understand. What`s this???
btw I have htmlEscaping switched OFF.
Regards
Lukas Zapletal [[EMAIL