How to send extra variables in a post from a form?
html, php
Solution
Hidden input fields:
<input type="hidden" name="var" value="..." />
Problem
In my php script I have additional variables I don't want visible to the user to be sent in a _post from a to another php script. How do I do that?