0

我需要知道如何插入 mysql 图像和其他 id 以使用 jquery 文件上传插件制作 FK ...我已经有了 FK 和工作。

我对 jquery 文件上传插件真的很菜鸟......我已经在我的页面中插入了表单,但是在这部分我丢失了......我不知道我需要在哪里插入我的代码,比如$stmt = $conn->prepare('INSERT INTO IMAGENES (id_paciente,imagenes,id_doctor) VALUES (:id_paciente,:imagenes,:id_doctor)');保存图像的路径上传hander.php...

4

1 回答 1

0

你为什么要使用任何插件?

<form action="upload_file.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>

上传文件.php:

<?php
$f = $_FILES['file'];

//move $f['tmp_name'] to some folder
//use PDO/MySqli for Mysql queries
?>
于 2013-06-03T16:34:38.653 回答