$name) {
$tmpName = $uploadedFiles['tmp_name'][$key];
$newFilePath = $uploadDir . $name;
if (move_uploaded_file($tmpName, $newFilePath)) {
echo "تم تحميل الصورة $name بنجاح.
";
} else {
echo "حدث خطأ أثناء تحميل الصورة $name.
";
}
}
}
// عرض الصور المحفوظة إذا كانت موجودة
if (is_dir($uploadDir)) {
$files = glob($uploadDir . '*');
foreach ($files as $file) {
echo '
';
}
}
?>