Html/php, Uploaded Files Not Being Stored In $_files
I have a form where a user submits the description of an object (including an image) and there is JavaScript that adds an additional set of inputs for +1 object description. When t
Solution 1:
Have you set the correct encoding type in your form tag?
<formenctype="multipart/form-data"method="post"action=...>
Solution 2:
<formenctype="multipart/form-data"method="POST">
be sure you include enctype
Post a Comment for "Html/php, Uploaded Files Not Being Stored In $_files"