Welcome to admin panel Add to Gallery Manage to Gallery Image Title Image File
The file fields do not get sent via $_POST - they are sent in PHP via $_FILE. there are various tutorials on uploading and changing files names.
you need to access $_FILE instead of $_POST it should be: $file = $_FILE['file2']['name'] instead of $file = $_POST['file2'];