我正在尝试测试如何在我的 wamp 数据库上上传图片,但出现“未定义索引:图片”错误。请你帮助我好吗?谢谢!
这是我的公式的代码:
<form action="PicPost.php" method="post" enctype="multipart/form-data">
<p>
Formulaire d'envoi de fichier :<br />
<input type="file" name="Pic" /><br />
<input type="submit" value="Post the pic" />
</p>
</form>
这是应该处理它的文件:
<?php
try
{
$bdd = new PDO('mysql:host=localhost;dbname=db', 'root', '');
}
catch (Exception $e)
{
die('Erreur : ' . $e->getMessage());
}
$req = $bdd->prepare('INSERT INTO picdb (Picture)
VALUES(?)');
$req->execute(array($_POST['Pic']));
?>