<?php
//Сheck that we have a file
if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) {
//Check if the file is JPEG image and it's size is less than 350Kb
$filename = basename($_FILES['uploaded_file']['name']);
$ext = substr($filename, strrpos($filename, '.') + 1);
//ตรงนี้คับกำหนดชื่อไฟล์ type
if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpg") &&
($_FILES["uploaded_file"]["size"] < 350000)) {
//Determine the path to which we want to save this file
$newname = dirname(__FILE__).'/gradpic/'.$filename;
//Check if the file with the same name is already exists on the server
if (!file_exists($newname)) {
//Attempt to move the uploaded file to it's new place
if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname))) {
echo "It's done! The file has been saved as: ".$newname;
} else {
echo "Error: A problem occurred during file upload!";
}
} else {
echo "Error: ".$_FILES["uploaded_file"]["name"]." อัพโหลดไม่ได้เนื่องจากมีไฟล์รูปภาพนี้อยู่แล้วกรุณาตรวจสอบอีกครั้ง";
}
} else {
echo "Error: กรุณาใช้ไฟล์ .jpg และขนาดไม่เกิน 350Kb";
}
} else {
echo "Error: กรุณาเลือกไฟล์";
}
?>