0

我有一个包含 6 个字段的表,students_id, customer_id, firstname, lastname, image_name, imageimage字段是 BLOB 类型、image_name字段图像文件名和扩展名。我知道如何从 blob 字段获取存储的图像并显示到我的网页,我通过 phpmyadmin 上传图像对其进行了测试...我的问题是如何在我的image字段中存储图像。?

这是我用于其他领域的..

<?php
public function addStudents($data) {
     $this->db->query("INSERT INTO " . DB_PREFIX . "students SET customer_id = '" .
 (int)$this->customer->getId() . "', firstname = '" . $this->db->escape($data['firstname']) .
 "', lastname = '" . $this->db->escape($data['lastname']) . "'");
}
?>

它是我的 HTML 图片上传部分

<input type="file" name="image" />

有人请帮帮我吗?如果有人可以通过编辑我的源代码来回答它非常有帮助......

谢谢...

4

1 回答 1

0

嗯,你可以查看http://www.mysqltutorial.org/php-mysql-blob/,解释的很清楚

于 2013-10-12T03:10:45.630 回答