The file name that I upload called : dinosaur.gif
And I want it renamed the filename automatically to 1_dinosaur.gif
<input type=file name=products_image_thumbnail>
if (move_uploaded_file($FILES['products_image_thumbnail']['tmp_name'], $uploaddir . $FILES['products_image_thumbnail']['name'])) {
$insertuserfile = $_FILES['products_image_thumbnail']['name'];
} else {
echo "upload file";
}