|
|
|
uploadify เมื่ออัพแล้วจะให้เปลี่ยนชื่อยังไงครับ โดยให้เก็บชื่อข้อมูลลง ฐานข้อมูลด้วยครับ |
|
|
|
|
|
|
|
<?php
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
// Define a destination
$targetFolder = 'uploads'; // Relative to the root
$verifyToken = md5('unique_salt' . $_POST['timestamp']);
if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['uploads'] . $targetFolder;
$newFile = $user_id."_".$_FILES['Filedata']['name']; // อยากแก้ชื่อไฟล์เป็นอะไรก็ลองทดสอบ
$targetFile = rtrim($targetPath,'/') . '/' . $newFile ; //น่าจะอยู่แถวๆนี้ล่ะ
// Validate the file type
$fileTypes = array('jpg','jpeg','gif','png'); // File extensions
$fileParts = pathinfo($_FILES['Filedata']['name']);
if (in_array($fileParts['extension'],$fileTypes)) {
move_uploaded_file($tempFile,$targetFile);
echo '1';
} else {
echo 'Invalid file type.';
}
}
?>
|
ประวัติการแก้ไข 2017-05-02 09:43:43
|
|
|
|
Date :
2017-05-02 09:43:09 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|