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

12 lines
246 B
Markdown

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
}
}
}