HTML Blob via User Defined Tag?
Posted: Tue Feb 21, 2006 8:36 pm
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;
...
elseif ($_POST['terms'] ) {
$html = ??HTMLBLOB??; \r";
$html .= "\r";
$html .= "\r";
}
...
echo $html;