Thought I would elaborate on my situation.
I am trying to use cforms as a simple builder to put together the form to post to Authorize.net.
In the template I put some Authorize.net code that populates a few variables that I need to drop into the value of the required required hidden fields.
In the end I need to have 3 hidden fields named appropriately and populated with the dynamically generated values in the variables in the Authorize.net code
If I wrote it by hand it would look similar to this.
<input type="hidden" name="x_fp_hash" value="<?php echo $fingerprint ?>">
with a HTML result like
<input type="hidden" name="x_fp_hash" value="X2z45kghecswoIY549wjdA">
Thanks