>
> <!-- blah blah -->
> [- get_content_from_a_database("index.html"); -]
> <!-- blah blah -->
>
> Where base.epl is the EmbperlObject base, does Embperl also parse the
> output of that function? For example, if get_content... returned:
>
> [+ $myvariable $]
>
> Would I see that as a literal on my screen or would the value of
> $myvariable be displayed?
>
Any output inside the page is not parsed again, but you can run it thru the
Exeute function to get the desired result:
<!-- blah blah -->
[- $code = get_content_from_a_database("index.html"); -]
[- Execute ({input => \$code}) -]
<!-- blah blah -->
Gerald
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]