I try to implement an uploading form but I can't get data from $HTTP_POST_FILES array.
My form looks like:
<form enctype="multipart/form-data" name="subscribe" method="POST" action="subscribe.php">
<input type="file" name="sub_picture">
........
</form>
When I'm in my script, I could access all $HTTP_POST_VARS elements without any problem.
When I access $HTTP_POST_FILES, $HTTP_POST_FILES['subpicture']['name'], etc. I get nothing.
When I access $sub_picture_name, $sub_picture_size, still nothing.
When I access $HTTP_POST_VARS["sub_picture"], I get "C", which I guess is the beginning of my mime-type.
Did my file upload? It is a server issue? I need some help!