|
|
|
สอบถามโค้ด upload ไฟล์ด้วย Library Uploadify (jQuery) |
|
|
|
|
|
|
|
คือจาก if else ที่ผมยกตัวอย่างมานี้ ผมคิดว่ามันยังไม่ทำงานอ่าครับ เพราะ ถ้าเลือกไฟล์ที่นามสกุลไม่ตรงกับ type จะไม่แจ้ง Invalid file type
|
|
|
|
|
Date :
2012-07-09 15:15:25 |
By :
tonmasterbp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
/*
Uploadify v3.1.0
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
// Define a destination
$targetFolder = 'data/'; // Relative to the root
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetFile = rtrim($targetFolder,'/') . '/' . $_FILES['Filedata']['name'];
// Validate the file type
$fileTypes = array('jpg','jpeg','gif','png','txt','zip','rar'); // File extensions
$fileParts = pathinfo($_FILES['Filedata']['name']);
if (in_array($fileParts['extension'],$fileTypes))
//if (in_array(strtolower($fileParts['extension']),$fileTypes))
{
move_uploaded_file($tempFile,$targetFile);
echo '1';
}
else
{
echo 'Invalid file type.';
}
}
?>
ตามนี้เลยครับ พี่วิน
|
|
|
|
|
Date :
2012-07-10 08:10:23 |
By :
tonmasterbp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำยังไงดีครับพี่วิน ผมแก้ไปแก้มา เวลาเลือก type ผิดมันก็ยังไม่โชว์ echo 'Invalid file type.'; ครับ
|
|
|
|
|
Date :
2012-07-10 16:00:38 |
By :
tonmasterbp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สงสัยได้ไปดาวน์ Code จากเว็บ Uploadify มาใหม่ครับ ตัวที่ผมใช้คิดว่าน่าจะมีอะไรผิดพลาดครับ
|
|
|
|
|
Date :
2012-07-10 21:53:39 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมโหลดมาจากเว็บ แล้วก็ยังใช้ไม่ได้ครับ ยังมีอาการเดิม อยากจะปรับแก้ แต่ก็ไม่รู้ว่าจะปรับแก้ตรงไหนครับ
|
|
|
|
|
Date :
2012-07-11 08:53:49 |
By :
tonmasterbp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมว่ามันยังมีปัญหาอยู่น่ะครับ จากที่ได้ลอง ๆ ใช้ดูครับ
|
|
|
|
|
Date :
2012-07-11 20:49:38 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ออ....ครับ ขอบคุณครับพี่วิน มีตัวอื่นแนะนำมั้ยครับ ที่เป็น upload Ajax
|
|
|
|
|
Date :
2012-07-12 08:30:43 |
By :
tonmasterbp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|