Page 1 of 1

HTML Blob via User Defined Tag?

Posted: Tue Feb 21, 2006 8:36 pm
by spyro
I am basically coding a multi-page form in a user defined tag using if/elseif. one of the pages in the flow has a large blob of HTML content. Basically a user agreement. So I was thinking of storing the agreement as an HTML blob and calling it from the user defined tag.

...
elseif ($_POST['terms'] ) {

$html = ??HTMLBLOB??; \r";
$html .= "\r";
$html .= "\r";

}
...
echo $html;

Re: HTML Blob via User Defined Tag?

Posted: Wed Feb 22, 2006 3:26 am
by calguy1000
no guarantees, but try the smarty eval function.  It's what's used in the default news templates now.