<?php $failed = false; $images = Array(); $upload_dir = "UPLOAD_DIR_PATH"; if ($_SERVER['CONTENT_LENGTH'] < 8380000) { if (isset($_FILES['upload_files']) && $_FILES['upload_files']['error'] != 0) { foreach($_FILES['upload_files']['tmp_name'] as $key=>$value) { $file = $_FILES['upload_files']['name'][$key]; // allow only image upload if(preg_match('#image#',$_FILES['upload_files']['type'][$key])) { if(!move_uploaded_file($value, $upload_dir.$file)) { $failed = true; } else { $images[] = "WEBSERVER_UPLOAD_DIR_PATH".$file; } } else { $images = array("error"=>"Sorry, only images are allowed to upload"); } } } } else { $images = array("error"=>"Sorry, Upload size exceed allowed upload size of 8MB"); } if($failed == true) { $images = array("error"=>"Server Error<br/>Reported to Admin"); } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง