File: upload.php

Recommend this page to a friend!
  Classes of Arun Kumar   Multiple File Drag and Drop Upload   upload.php   Download  
File: upload.php
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Multiple File Drag and Drop Upload
Upload drag and dropped files
Author: By
Last change: Update of upload.php
Date: 2 years ago
Size: 177 bytes
 

Contents

Class file image Download
<?php if($_SERVER['REQUEST_METHOD'] == "POST"){ if(move_uploaded_file($_FILES['file']['tmp_name'], "uploads/".$_FILES['file']['name'])){ echo($_POST['index']); } exit; } ?>