Is there any way to include dynamic content in an HTML block? I'm passing variables to my form, and although I can use them to pre-populate fields, I would like a way to display them in an HTML block. Using javascript doesn't seem to work.... I've tried:
<p>
The value of this variable is
<script type="text/javascript">
document.write(variable);
</script>
</p>
Is there another method? In a nutshell, I just need to DISPLAY some data to the user. I don't want it in a form field, because I don't want them to be able to change the value. Any suggestions?