There's plenty of good info on how to submit additional form data. I've used the example:
<form ....
<input type="hidden" name="example1" value="test">
and using firebug I can see this in the POST request as follows:
..-206032829513610 Content-Disposition: form-data; name="example1" test
..-206032829513610 Content-Disposition: form-data; name="files[]"; filename="uploadthisfile.php" etc.
However, I'm kind of at a dead end as to how to access this additional form data on the PHP side.
$_SERVER['HTTP_CONTENT_DISPOSITION'] is null, so nothing to parse there.
$_POST('example1') ... nothing
Any ideas how to get to this new form data from PHP ??
Thanks
Steve