php mysql插入图片BLOB字段

时间:2012-11-20 15:13:16

标签: php mysql sql blob image-upload

我有一个包含6个字段的表students_id, customer_id, firstname, lastname, image_name, image这个image字段是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" />
有谁请帮帮我?如果有人可以通过编辑我的源代码来回答它非常有用......

感谢...

1 个答案:

答案 0 :(得分:0)

嗯,你可以查看http://www.mysqltutorial.org/php-mysql-blob/,这是明确解释的