首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >从html表单输入的图像上载到数据库blob列

从html表单输入的图像上载到数据库blob列
EN

Stack Overflow用户
提问于 2022-04-09 18:33:08
回答 1查看 686关注 0票数 -2

我想将数据从html表单上传到数据库,下面是我的html代码:

代码语言:javascript
复制
<form method="post" action="events.php" id="formhh" enctype="multipart/form-data">
    <input type="text" name="Titre" required>
    <input type="file" accept="image/jpeg" name="Image" required>
    <textarea name="Description" form="formhh" required></textarea>
    <div>
        <input type="radio" name="style" value="1" required>
        <input type="radio" name="style" value="2" required>
        <input type="radio" name="style" value="3" required>
        <input type="radio" name="style" value="4" required>
        <input type="radio" name="style" value="5" required>
    </div>
    <input type="submit" class="btn btn-outline-primary me-5">
</form>

以及连接数据并将数据发送到数据库的"events.php“(名为”connects“):

代码语言:javascript
复制
<?php

$conn = new mysqli("localhost", "root", "", "isticg");

$Titre = $_POST['Titre'];
$Img = mysqli_real_escape_string($conn ,file_get_contents($_FILES['Image']['tmp_name']));
$Desc = $_POST['Description'];
$Style = $_POST['style'];



$stmt = $conn->prepare("insert into evenements(Titre, Image, Description,style) values(?,?,?,?)");

$stmt->bind_param("sbsi",$Titre,$Img,$Desc,$Style);

$stmt->execute();

$stmt->close();
$conn->close();

?>

除了图像,一切都很好,下面是做完测试后,它在phpmyadmin中的外观如何?

我是一个初学者,刚刚开始学习这个项目的php,所以请您提供一个解释与您的答案。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-04-09 19:53:19

修好了!我将php代码更改为:

代码语言:javascript
复制
<?php

$dbh = new PDO("mysql:host=localhost;dbname=isticg", "root", "");

$Titre = $_POST['Titre'];
$Img = file_get_contents($_FILES['Image']['tmp_name']);
$Desc = $_POST['Description'];
$Style = $_POST['style'];



$stmt = $dbh->prepare("insert into evenements values('',?,?,?,?)");

$stmt->bindParam(1,$Titre);
$stmt->bindParam(2,$Img);
$stmt->bindParam(3,$Desc);
$stmt->bindParam(4,$Style);

$stmt->execute();

?>
票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/71810856

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档