[EMAIL PROTECTED] wrote:
> [% FOREACH letter = DBI.query('SELECT blahblah limit [% limit %]') %]

You need double quotes and '$' to interpolate variables, like so:

  [% FOREACH letter = DBI.query("SELECT blahblah limit $limit") %]

A


_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to