Forum Moderators: open
<form>
<input type="text" name="firstname">
<input type="text" name="lastname">
<input type="text" name="occupation">
<input type="hidden" value="some html + firstname + some html + lastname + some html + occupation">
</form>
I think this might require some javascript. Is something like this possible?
Your form handler is the best place to do form processing - the thing within <form action="?">. It should be able to access all of the form fields which were submitted and then combine them with HTML as required.