Files
memory-infrastructure-palace/docs/projects/memorypalace/Apple Notes/public static function multi() {.md

246 B

foreach ($_FILES as $file) { $filename = $file['name']; $destination = './' . $filename; //print_r($file); if (move_uploaded_file($file['tmp_name'], $destination)) { // also insert the file into the database here

		}
	}
}