$result = mysqli_query($connection, $query);
if ($result)
{
// use echo "success, data has been inserted successfully or create a success page and redirect to another page from here
}
else
{
// query fails
}
$_FILES['uploadedimage']['name'] will give you the original image name.
En tu código estás haciendo como,
$imagename=date("d-m-Y")."-".time().$ext; // you are adding date, time and extension of the image.
$target_path = "images/".$imagename;
Entonces, haz clic en Me gusta
$imagename= $_FILES['uploadedimage']['name']; // `$imagename` will now contain spongebob.png
$target_path = "images/".$imagename; // images/spongebob.png
IMPORTANTE:
`mysql_*` is deprecated. Migrate it to `mysqli_*` or `PDO`. You code is vulnerable to SQL Injection.