<form action="uploads.php" enctype="multipart/form-data" method="post">
          <?php
          if(!empty($message)){
             echo "<p>{$message}</p>";
          }
          ?>
          <input type="hidden" name="MAX_FILE_SIZE" value="1048576" />
          <label for="something">Please, upload your file</label>
          <input type="file" name = "file_upload" id="something"/>
          <input type="submit" name="submit" value="Upload" />
       </form>
    </body>
</html>
I changed post_max_size = 100M, max_file_size was already 64M. Problem is when I run the code and upload more than 20kb then first time it gives error no. 3 (partial upload problem) and then stop working. I have to restart php to do other thing. Please help..
 
     
    