|
|
|
การเซฟรูปภาพจากฐานข้อมูลที่เป็น blob มาเก็บไว้ใน folder (ช่วยหน่อยครับ) |
|
|
|
|
|
|
|
Code (PHP)
<?php
$filename = "img/win.jpg";
$file = fopen($filename,"w");
$input = file_get_contents ($result["from_blob"]);
// $input = $result["from_blob"];
fwrite($file,$input);
fclose($file);
?>
|
|
|
|
|
Date :
2013-04-17 05:55:16 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วตรง $result["from_blob"] นี่ใส่ค่ายังไงหรอครับ
|
|
|
|
|
Date :
2013-04-17 11:59:47 |
By :
it_ท้อแท้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ข้อมูลที่อยู่ใน db ครับ ที่เราเก็บไว้อะครับ
|
|
|
|
|
Date :
2013-04-17 12:27:20 |
By :
slurpee55555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$mysql = new database\mysql();
$conn = $mysql->open_connection();
$query = "SELECT Photo FROM Employees WHERE EmployeeID = ?";
$params = array($id);
$result = $mysql->execute_query($conn, $query, $params);
if ($result) {
$row = $result[0];
$filename = "img/win.jpg";
$file = fopen($filename,"w");
$input = file_get_contents($row->Photo);
fwrite($file,$input);
fclose($file);
}
$mysql->close_connection($conn);
|
|
|
|
|
Date :
2013-04-17 12:27:46 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับ ได้แล้ว ^^
|
|
|
|
|
Date :
2013-04-17 13:06:59 |
By :
it_ท้อแท้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|