hi I have a table in my charactersheet that people add their weapons in along with their assocated stats. In another part of the character sheet I would like to use these enered values in the sheet. Here is what I am trying to do: in the character sheet there is a textfield like so: <input type="text" name="attr_w1name" class="sheet-four">
<input type="text" name="attr_w2name" class="sheet-four">
<input type="text" name="attr_w3name" class="sheet-four">
<input type="text" name="attr_w4name" class="sheet-four">
In another part of the character sheet I would like to use the text entered in this input like so: <select name="attr_wepsel" class="sheet-four">
<option value="1">"@{w1name}"</option>
<option value="2">"@{w2name}"</option>
<option value="3">"@{w3name}"</option>
<option value="4">"@{w4name}"</option>
</select> However the select button shows the actual code and not the reference. What piece of wizardry am I missing? Thanks