I use html5 multiple tag
<input class="file" type="file" id="files1" name="files[]" multiple />
and my php can handle only for 1 file each time
move_uploaded_file($_FILES['SelectedFile']['tmp_name'], 'images/uploaded/' . $_FILES['SelectedFile']['name'])
how to process if users use ctrl and select multiple file and click upload? I think I have to separate 2 logic to process? because the user can select 1 by 1 as well.