|
|
|
บันทึก textfile ลงใน databse และดึงแสดงบนเว็บบราวเซอร์ |
|
|
|
|
|
|
|
อันนี้ตัวอย่างการนำเข้า text file ลงในฐานข้อมูล
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & Text To MySQL</title>
</head>
<body>
<?
copy($_FILES["fileCSV"]["tmp_name"],$_FILES["fileCSV"]["name"]); // Copy/Upload CSV
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database"); // Conect to MySQL
$objDB = mysql_select_db("mydatabase");
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'r');
if ($objFopen) {
while (!feof($objFopen)) {
$file = fgets($objFopen, 4096);
$strSQL = "INSERT INTO customer ";
$strSQL .="(Name) ";
$strSQL .="VALUES ";
$strSQL .="('".$file."') ";
$objQuery = mysql_query($strSQL);
}
fclose($objFopen);
}
echo "Import Done.";
?>
</table>
</body>
</html>
Go to : (import upload text file to mysql table) php ทำการอัพโหลด insert/import ข้อมูลจาก text file ลง Mysql ยังไงคะ
|
|
|
|
|
Date :
2012-01-18 20:43:17 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ เดียวลองทำดูก่อนน่ะครับ
|
|
|
|
|
Date :
2012-01-18 22:18:29 |
By :
ABDulwahed |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วครับ ขอบคุณมากๆครับ
|
|
|
|
|
Date :
2012-01-20 18:55:08 |
By :
ABDulwahed |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วครับ ขอบคุณมากๆครับ
|
|
|
|
|
Date :
2012-01-20 18:55:14 |
By :
ABDulwahed |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-01-20 20:22:53 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ข้อมูลใน textfile ต้องเป็นแบบไหนคะ จำกัดหรือป่าวคะ
|
|
|
|
|
Date :
2012-05-06 17:42:23 |
By :
Butterney |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|