Multiple file uploader with progress bar
I am not that good at PHP coding. I found this uploader that works great except it saves the files with a scrambled name. I wish if someone could be able to modify it in order to save the real file names which are uploaded. Here's the code. I thank you in advance. I really need help with it.

I am not that good at PHP coding. I found this uploader that works great except it saves the files with a scrambled name. I wish if someone could be able to modify it in order to save the real file names which are uploaded. Here's the code.
//upload.php
if(isset($_FILES['images']))
{
for($count = 0; $count < count($_FILES['images']['name']); $count++)
{
$extension = pathinfo($_FILES['images']['name'][$count], PATHINFO_EXTENSION);
$new_name = uniqid() . '.' . $extension;
move_uploaded_file($_FILES['images']['tmp_name'][$count], 'images/' . $new_name);
}
echo 'success';
}
?>
I thank you in advance. I really need help with it.