|
|
|
สอบถามการนำไฟล์ text เพิ่มเข้าไปใน sql โดยเขียน PHP ยังไงครับ |
|
|
|
|
|
|
|
อยากได้วิธีส่งไฟล์ Text เข้าไปในฐานข้อมูลครับ
ชื่อไฟล์ 13082557.text ที่ถูกเก็บไว้ใน โฟลเดอร์ textfile ที่ส่งมาจาก Access อ่ะครับ มีรายละเอียดข้างในไฟล์ text
Quote:8,"นายบ้านนอก","เด็กวัด","01035","1-2345-78569-74-1","218","กาบเชิง","17","กาบเชิง","กาบเชิง","สุรินทร์","32210","นางทดสอบ","ทดสอบ","นายทดสอบ","ทดสอบ","0857627274","044559111","นายทดสอบ ทดสอบ","ชั้นมัธยมศึกษาปีที่ 1/1",,10/8/2014 0:00:00,"ให้ผู้ปกครองมาพบครูฝ่ายปกครองโดยด่วนเพื่อปรึกษาหารือกับนักเรียน","รายงานพฤติกรรมนักเรียน","11 สิงหาคม 2557",10/8/2014 0:00:00,"นายนิวัติ ยอดเสาดี",10/8/2014 0:00:00,0,1,0,"(ชั้นมัธยมศึกษาปีที่ 1-3)"
ผมต้องการให้มันเข้าไปอยู่ใน sql ครับตามลำดับแบบนี้อ่ะครับ
เขียนโค้ดอย่างไรครับ ขอคำชี้แนะด้วยครับ
Tag : PHP, Ms Access, MySQL
|
|
|
|
|
|
Date :
2014-08-13 09:45:32 |
By :
maisurin |
View :
779 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำแล้วแต่ปรากฎว่ามันส่งเข้าไปได้แต่พอเข้าไปเช็คในฐานข้อมูลว่างเปล่าครับ
Code (PHP)
<?
$conn=mysql_connect('localhost','root','mysql')or die ('Not connect ');
$dbc=mysql_select_db('grade');
$filename = "textfile/2557.txt"; // กำหนดชื่อไฟล์ที่ต้องการ
$data = file($filename); // อ่านข้อมูลขึ้นมาเป็น array ที่ชื่อ data
foreach($data as $i=>$d){
$t=preg_split("[,\t]",$d); // แบ่งข้อมูลออกเป็นส่วนๆ code นี้สามารถใช้ได้กับไฟล์ทั้ง 2 format นะครับ
$sql="INSERT INTO action (id,U_ID,firstname,lastname,ST_ID,TH_ID,Ads_number,Tampol,Mo,Amper,Province,Postcode,M_firstname,M_lastname,F_firstnam,F_lastname,M_phone,F_phone,Parents,grade,Study_year,senbook,detail,datesend,comein,teacher,S_year,Acct,Send,No_send,grad) VALUES ('','$t[0]','$t[1]','$t[2]','$t[3]','$t[4]','$t[5]','$t[6]','$t[7]','$t[8]','$t[9]','$t[10]','$t[11]','$t[12]','$t[13]','$t[14]','$t[15]','$t[16]','$t[17]','$t[18]','$t[19]','$t[20]','$t[21]','$t[22]','$t[23]','$t[24]','$t[25]','$t[26]','$t[27]','$t[28]','$t[29]','$t[90]','$t[31]')";
mysql_query($sql);
}
?>
|
ประวัติการแก้ไข 2014-08-13 10:54:08
|
|
|
|
Date :
2014-08-13 10:32:58 |
By :
maisurin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใน text file ทำไว้ยังไงครับ
|
|
|
|
|
Date :
2014-08-13 11:11:24 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้าง field list ตามชื่อ ของ field ใน table โดยให้จัดเรัยง ตาม txt ที่เก็บ
Code (PHP)
$field_list= array( 'fld_name for txt[0]', 'fld_name for txt[1]','field_name for txt[ last ]');
$j = count($field_list);
$arrTxt = json_decode('[' . $txt . ']');
$set='';
for($i=0; $i<$j; $i++){
$set .= ($set==''? 'set ' : ', ').$field_list[$i]. "'$arrTxt[$i]'";
}
$qr='insert into tablename '. $set;
แต่ถ้า txt ตรงกันกับ field ใน table อยู่แล้ว
Code (PHP)
$arrTxt = json_decode('[' . $txt . ']');
$value='';
$j=count($arrTxt);
for($i=0; $i<$j; $i++){
$value .= ($value>''? ', ' : ' '). " '$arrTxt[$i]' ";
}
$qr='insert into tablename values ('. $set. ' )';
|
|
|
|
|
Date :
2014-08-13 11:15:14 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|