I'm not 100% sure I follow you, but may I assume you are doing some sort of server-side include?

Let us therefore assume that the file that contains %!poll!% is a template that is read, and the output is sent to the browser.

In that case you need to open the file, read it line by line, and perform a substitution using a subroutine call. The trick is to use the /e switch on your substitution. Something like:

s/%!poll!%/poll_view/e

... should do the trick nicely. (Assuming the line is being held in $_).

I note in passing that you could use Perl's alternate quoting mechanisms to good effect. Consider the difference between

print "<td width=\"160\"> <img src=\"images/left.gif\" width=\"2\" height=\"5\"><img +src=\"images/poll.gif\" width=\"$num\" height=\"5\"><img src=\"images +/right.gif\" width=\"2\" height=\"5\"></td> <td width=\"10\" class=\"$ab\">$fin</td></tr>";

and

print qq{<td width="160"> <img src="images/left.gif" width="2" height="5"><img src="i +mages/poll.gif" width="$num" height="5"><img src="images/right.gif" w +idth="2" height="5"></td> <td width="10" class="$ab">$fin</td></tr>};


print@_{sort keys %_},$/if%_=split//,'= & *a?b:e\f/h^h!j+n,o@o;r$s-t%t#u'

In reply to Re: including subroutines by grinder
in thread including subroutines by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.