I'm trying to figure out if there's a way to set the name of an input text field to a fixed name. I'm trying to populate that field with input from another form (hopefully a lightbox form). Something like:
<input type="text" name="monogram" value="" />
If the target field changes every time I add another field, then it will be a real pain to change everything if I add more fields later. Also tryint to figure out how to add a tag so that the value field gets populated on the submit of the other form (or lightbox form). In php, if the field being passed is called monogram, then it would be:
<input type="text" name="monogram" value="<?php echo $_POST['monogram']; ?>" />
Thanks,
Alisa