📝 Update and organize project documentation and assets

This commit is contained in:
2026-01-26 22:46:14 +00:00
parent 4194dcfeff
commit b20e2185b2
1433 changed files with 64484 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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
}
}
}