สอบถามว่า ต้องเขียน Code อย่างไร จึงจะกำหนดช่อง Excel แบบกำหนดเป็นหลายช่อง เช่น A2:C2 ตามตัวอย่างใน link http:/
ถาม-ตอบ แนะนำไอเดียว โค้ดตัวอย่าง แนวทาง วิธีแก้ปัญหา สอบถามว่า ต้องเขียน Code อย่างไร จึงจะกำหนดช่อง Excel แบบกำหนดเป็นหลายช่อง เช่น A2:C2 ตามตัวอย่างใน link http:/
สอบถามว่า ต้องเขียน Code อย่างไร จึงจะกำหนดช่อง Excel แบบกำหนดเป็นหลายช่อง เช่น A2:C2 ตามตัวอย่างใน link http:/
Copy
สอบถามว่า ต้องเขียน Code อย่างไร จึงจะกำหนดช่อง Excel แบบกำหนดเป็นหลายช่อง เช่น กำหนดช่อง Excel ที่ต้องการจะดึงข้อมูลเป็นช่อง A2:C2 (A2 ถึง C2) แล้วเอามากรอกที่ช่อง <input type="text" id="selectcell1" name="selectcell1"> / <input type="text" id="selectcell2" name="selectcell2"> / <input type="text" id="selectcell3" name="selectcell3"> (กรอกคำว่า Hello / is my Full / World ตามไฟล์ excelimport2.xlsx) ตามลำดับ และตามตัวอย่างใน link http://niik.in/que_3017_6740 ได้ครับ
Screenshot ที่เขียนโครงสร้าง ให้ต้องการ กำหนดช่อง Excel แบบกำหนดเป็นหลายช่อง เช่น A2:C2 (A2 ถึง C2) แล้วเอามากรอกที่ช่อง <input type="text" id="selectcell1" name="selectcell1"> / <input type="text" id="selectcell2" name="selectcell2"> / <input type="text" id="selectcell3" name="selectcell3"> (กรอกคำว่า Hello / is my Full / World ตามไฟล์ excelimport2.xlsx) ตามลำดับ แต่เมื่อ Import Excel file แล้ว กรอกแค่ Hello / World (ขึ้นแค่ช่อง <input type="text" id="selectcell1" name="selectcell1"> / <input type="text" id="selectcell2" name="selectcell2">) ไม่ขึ้นกรอกคำว่า Hello / is my Full / World (ขึ้นครบทุกช่อง ทั้ง <input type="text" id="selectcell1" name="selectcell1"> / <input type="text" id="selectcell2" name="selectcell2"> / <input type="text" id="selectcell3" name="selectcell3">) ครับ
ชุดไฟล์ + Code ทั้งหมดครับ
1. excelimport.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> h2,h4 {display: inline;} </style> </head> <body> <form action="" method="post" enctype="multipart/form-data" name="myform1" id="myform1"> <details> <summary>กรอกช่อง Excel ที่ต้องการจะเลือก</summary> <br><h4 for="selectcell1">ช่อง Excel ที่ต้องการจะเลือกในส่วนช่องเริ่มต้น : </h4><input type="text" id="selectcell1" name="selectcell1"><br><br> <h4 for="selectcell2">ช่อง Excel ที่ต้องการจะเลือกในส่วนช่องสุดท้าย : </h4><input type="text" id="selectcell2" name="selectcell2"> </details><br> <h2 for="myfile1">Select files : </h2><input type="file" name="excelFile" id="excelFile" /><br><br> <h2 for="fname">First name : </h2><input type="text" id="fname" name="fname"><br><br> <h2 for="lname">Middle name : </h2><input type="text" id="lname" name="lname"><br><br> <h2 for="lname">Last name : </h2><input type="text" id="mname" name="mname"><br><br> <input type="submit" name="btnSubmit" id="btnSubmit" value="Submit" /> </form> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript"> $(function(){ // เมื่อฟอร์มการเรียกใช้ evnet submit ข้อมูล $("#excelFile").on("change",function(e){ e.preventDefault(); // ปิดการใช้งาน submit ปกติ เพื่อใช้งานผ่าน ajax // เตรียมข้อมูล form สำหรับส่งด้วย FormData Object var formData = new FormData($("#myform1")[0]); // ส่งค่าแบบ POST ไปยังไฟล์ read_excel.php รูปแบบ ajax แบบเต็ม $.ajax({ url: 'read_excel.php', type: 'POST', data: formData, /*async: false,*/ cache: false, contentType: false, processData: false }).done(function(data){ console.log(data); // ทดสอบแสดงค่า ดูผ่านหน้า console /* การใช้งาน console log เพื่อ debug javascript ใน chrome firefox และ ie https://www.ninenik.com/content.php?arti_id=692 via @ninenik */ $('#selectcell1').val($('#selectcell1').val().toUpperCase()); $('#selectcell2').val($('#selectcell2').val().toUpperCase()); if($("#selectcell1").val() != ""){ $("#fname").val(eval("data." + $("#selectcell1").val())); } if($("#selectcell2").val() != ""){ $("#lname").val(eval("data." + $("#selectcell2").val())); } if($("#selectcell3").val() != ""){ $("#mname").val(eval("data." + $("#selectcell3").val())); } }); }); }); </script> </body> </html>
2. read_excel.php
<?php header("Content-type:application/json; charset=UTF-8"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); /** Error reporting */ error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE); date_default_timezone_set('Asia/Bangkok'); // http://php.net/manual/en/timezones.php require_once("PHPExcel/Classes/PHPExcel.php"); ?> <?php if(isset($_FILES['excelFile']['name']) && $_FILES['excelFile']['name']!=""){ $tmpFile = $_FILES['excelFile']['tmp_name']; $fileName = $_FILES['excelFile']['name']; // เก็บชื่อไฟล์ $_fileup = $_FILES['excelFile']; $info = pathinfo($fileName); $allow_file = array("csv","xls","xlsx"); /* print_r($info); // ข้อมูลไฟล์ print_r($_fileup);*/ if($fileName!="" && in_array($info['extension'],$allow_file)){ // อ่านไฟล์จาก path temp ชั่วคราวที่เราอัพโหลด $objPHPExcel = PHPExcel_IOFactory::load($tmpFile); // ดึงข้อมูลของแต่ละเซลในตารางมาไว้ใช้งานในรูปแบบตัวแปร array $cell_collection = $objPHPExcel->getActiveSheet()->getCellCollection(); // วนลูปแสดงข้อมูล $v=1; $json_data = array(); foreach ($cell_collection as $cell) { // ค่าสำหรับดูว่าเป็นคอลัมน์ไหน เช่น A B C .... $column = $objPHPExcel->getActiveSheet()->getCell($cell)->getColumn(); // คำสำหรับดูว่าเป็นแถวที่เท่าไหร่ เช่น 1 2 3 ..... $row = $objPHPExcel->getActiveSheet()->getCell($cell)->getRow(); // ค่าของข้อมูลในเซลล์นั้นๆ เช่น A1 B1 C1 .... $data_value = $objPHPExcel->getActiveSheet()->getCell($cell)->getValue(); // เท่านี้เราก็สามารถแสดงข้อมูลจากการอ่านไฟล์ได้แล้ว และสามารถนำข้อมูลเหล่านี้ // ทำการบันทักลงฐานข้อมูล หรือแสดงได้เลย $json_data["$column$row"] = $data_value; // echo $v." ---- ".$data_value."<br>"; $v++; } // แปลง array เป็นรูปแบบ json string if(isset($json_data)){ $json= json_encode($json_data); if(isset($_GET['callback']) && $_GET['callback']!=""){ echo $_GET['callback']."(".$json.");"; }else{ echo $json; } } } } ?>
3. excelimport2.xlsx - http://doanga2007.github.io/excelimport2.xlsx
4. PHPExcel ซึ่งโหลดจากเว็บ https://github.com/PHPOffice/PHPExcel/ ซึ่งมีโครงสร้างของไฟล์ทั้งหมด ดังนี้ครับ
Sumate Mephokkij
17-03-2020
12:05:23
คำแนะนำ และการใช้งาน
สมาชิก กรุณา ล็อกอินเข้าระบบ เพื่อตั้งคำถามใหม่ หรือ ตอบคำถาม สมาชิกใหม่ สมัครสมาชิกได้ที่ สมัครสมาชิก
- ถาม-ตอบ กรุณา ล็อกอินเข้าระบบ
เว็บไซต์ของเราให้บริการเนื้อหาบทความสำหรับนักพัฒนา โดยพึ่งพารายได้เล็กน้อยจากการแสดงโฆษณา
โปรดสนับสนุนเว็บไซต์ของเราด้วยการปิดการใช้งานตัวปิดกั้นโฆษณา (Disable Ads Blocker) ขอบคุณครับ