Like I said, you can name the file whatever you want while using move_uploaded_file().
example:
move_uploaded_file($_FILES['image']['tmp_name'], $uploads . "/" . $user['id'] . "gif");
This assumes every file uploaded is a gif which is probably not going to be the case, but you get the point.