Good morning! Home
I want to insert an image in the database in .jpg format, but when it is inserted it appears like this in the database: ???? JFIF
Here is my code related to the image:
<form action="" method="POST" enctype="multipart/form-data">
<input type="file" name="imagem" placeholder="Insira a imagem do produto" required/>
</form>
<?php
$imagem_produto=addslashes(file_get_contents($_FILES['imagem']['tmp_name']));
$inserir_produto=mysqli_query($link,"INSERT INTO produtos (imagem) VALUES('{$imagem_produto}')");
?>
What I wanted was for the database to display the name and the extension of the image, for example "imagen.jpg", just that!