|
|
|
รบกวนช่วยแก้ code ให้หน่อยครับ มันบันทึกลงฐานข้อมูลไม่ครบครับ....ช่วยทีนะ |
|
|
|
|
|
|
|
จากโค้ดนี้นะครับ มันบันึกลง ฟิว FileName ปกติ แต่ ฟิว Thumbnails เป็นค่าว่างครับ
for($i=1;$i<=(int)($_POST["hdnLine"]);$i++)
{
if($_FILES["fileUpload".$i]["name"] != "")
{
$images = $_FILES["fileUpload".$i]["tmp_name"];
if(copy($_FILES["fileUpload".$i]["tmp_name"],"MyResize/".$_FILES["fileUpload".$i]["name"]))
$new_images = "a_".$_FILES["fileUpload".$i]["name"];
{
$width=100; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height=round($width*$size[1]/$size[0]);
$images_orig = ImageCreateFromJPEG($images);
$photoX = ImagesX($images_orig);
$photoY = ImagesY($images_orig);
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,"MyResize/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
echo "Resize Successful.<br>";
$strSQL = "INSERT INTO files ";
$strSQL .="(Thumbnails,FilesName) VALUES
('".$_FILES["$new_images".$i]."','".$_FILES["fileUpload".$i]["name"]."')";
mysql_query($strSQL);
echo "Copy/Upload ".$_FILES["fileUpload".$i]["name"]." completed.<br>";
}
}
}
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2010-08-29 14:34:29 |
By :
เหลนไฟ |
View :
812 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2010-08-29 14:50:36 |
By :
เหลนไฟ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|