I have a PHP file upload form with method="post" enctype="multipart/form-data"
I am trying to do a <input type = "hidden" name = 'something' value = "something"/>
along with the input for file upload, but I am not able to get the value of 'something' in the upload handling script like $_POST['something']
Is it not possible to use POST variables along with a file upload? Any other alternative on how I can pass information to the upload handling script?