我有一个包含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" />
有谁请帮帮我?如果有人可以通过编辑我的源代码来回答它非常有用......
感谢...