public function upload_file() { $config['upload_path'] = "images/"; $config['allowed_types'] = "jpg|gif|png"; $config['max_size'] = 1024; $config['max_height'] = 1024; $config['max_width'] = 1024; $this->load->library("upload"); $this->upload->initialize($config); if($this->upload->do_upload("picture")) //ถ้าอัพโหลดไม่มีปัญหา { $data = $this->upload->data(); print_r($data); //แสดงค่า dataที่ได้ } else { echo $this->upload->display_errors(); } }
// Fall back to the deprecated mime_content_type(), if available if (function_exists('mime_content_type')) { $this->file_type = @mime_content_type($file['tmp_name']); return; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง