Mysql
 sql >> Database >  >> RDS >> Mysql

Perché i dati che carico vengono rinominati e i dati corrispondenti vengono aggiunti a righe diverse?

$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.

Nel tuo codice stai facendo come,

$imagename=date("d-m-Y")."-".time().$ext; // you are adding date, time and extension of the image.
$target_path = "images/".$imagename;

Quindi, metti mi piace

$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.