Answer the question
In order to leave comments, you need to log in
How to upload several files (photos) to the database at once through the site?
if (isset($_POST['upload'])) {
var_dump(file_get_contents($_FILES['img_upload']['tmp_name']));
if (!empty($_FILES['img_upload']['tmp_name'])) {
$img = addslashes(file_get_contents($_FILES['img_upload']['tmp_name']));
$connection1->query("INSERT INTO images (img) VALUES ('$img')");
}
}
<form action="index.php" method="post" enctype="multipart/form-data">
<input type="file" name="img_upload" multiple="multiple">
<input type="submit" name="upload" value="Загрузить">
</form>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question