|
|
|
จะเอาข้อมูลที่ได้จาก excel ไปเก็บไว้ในฐานข้อมูล sql server 2012 อย่างไร รบกวนช้วยต่อโค้ดให้ทีค่ะ |
|
|
|
|
|
|
|
เมื่อคุณอ่าน และ Loop มันได้ก็ใช้คำสั่ง Insert ลงใน SQL Server เลยครับ
Code (PHP)
$sql = "INSERT INTO customer (CustomerID, Name, Email, CountryCode, Budget, Used) VALUES (?, ?, ?, ?, ?, ?)";
$params = array($_POST["txtCustomerID"], $_POST["txtName"], $_POST["txtEmail"], $_POST["txtCountryCode"], $_POST["txtBudget"], $_POST["txtUsed"]);
$stmt = sqlsrv_query( $conn, $sql, $params);
PHP SQL Server Database (sqlsrv)
|
|
|
|
|
Date :
2016-06-15 15:26:37 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|