Login   Register  
Icontem

File: upload.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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:
Date: 2012-09-02 10:14
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;
}
?>