I can usually add some hidden fields but my situation is a little different.
I am placing html pages wrapped up in an exe file. Consequently when the form on one of the pages is submitted it does so from the exe file offline but going online to submit from the server:
Code:
<form name="emailform" action="http://mysite.com/cgi-bin/SaveForm.pl" target="_blank" method="POST">
It works, but when I receive the form it doesn't show a "from" field, just brackets ().
So I added a hidden field:
Code:
<input type="hidden" name="from" value="Feedback via exe file">
It doesn't work. Is my hidden field name incorrect?