ขอความช่วยเหลือหน่อยครับ คือต้องการ รับค่า มาจาก input ทีมี Comma(,)คั่นแล้วจะบันทึกข้อมูลใน Database ยังไงครับ
Code (PHP)
<html>
<head>
<title>Save Count Stock</title>
</head>
<body>
<?php include ("connect.php");
$sql = "INSERT INTO Real Check Stock (Item,[Lot No_],Quantity,Packing,[Packing No_],[Document No_],Location,DocumentDate,[End User]) VALUES (? , ? , ?, ?, ?, ?, ?, ?, ?)";
$str = $_POST["txtBarcode"]; //รับข้อมูล เช่น 1,2,3,4
$words = explode (',',$str,4);
$params = array($_POST["txtDocumentCode"],$_POST["txtLocationCode"],$_POST["txtenduser"], $_POST["txtDocumentDate"]);
print $words; $params;
$stmt = sqlsrv_query( $conn, $sql, $words, $params);
if( $stmt === false ) {
die( print_r( sqlsrv_errors(), true));
}
else
{
echo "<p align='center'> <font color=red size='5pt'>บันทึกข้อมูลเรียบร้อยแล้ว!</font> </p>";
}
sqlsrv_close($conn);
?>
</body>
<p align='center'> <font color=green size='5pt'><a href="addcount.php">กลับไปยังหน้าเพิ่มข้อมููล</a></font> </p>
<p align='center'> <font color=green size='5pt'><a href="index.php">กลับไปยังหน้าแรก</a></font> </p>
</html>
Tag : PHP
ประวัติการแก้ไข 2020-07-18 16:04:28 2020-07-18 16:05:15 2020-07-18 16:07:07 2020-07-18 16:09:28 2020-07-18 16:24:35
Date :
2020-07-18 15:59:42
By :
wiwatklanpan
View :
652
Reply :
5
ศึกษา sqlsrv_prepare
Date :
2020-07-18 20:00:08
By :
Chaidhanan
Code (PHP)
<html>
<head>
<title>Save Count Stock</title>
</head>
<body>
<?php include ("connect.php");
sql = "INSERT INTO Real Check Stock (Item,Lotno,Quantity,Qtypack,Packingno) VALUES ( ?, ?, ?, ?, ?)";
$cutqrcode = $_POST["txtBarcode"]; //รับข้อมูล เช่น 1,2,3,4
$words = (explode(',',$cutqrcode));
$item = $words[0];
$lotno = $words[1];
$quantity = $words[2];
$qtypack = $words[3];
$packingno = $words[4];
$params = array($item,$lotno,$quantity,$qtypack,$packingno);
$stmt = sqlsrv_query( $conn, $sql, $params);
if( $stmt === false ) {
die( print_r( sqlsrv_errors(), true));
}
else
{
echo "<p align='center'> <font color=red size='5pt'>บันทึกข้อมูลเรียบร้อยแล้ว!</font> </p>";
}
sqlsrv_close($conn);
?>
</body>
<p align='center'> <font color=green size='5pt'><a href="addcount.php">กลับไปยังหน้าเพิ่มข้อมููล</a></font> </p>
<p align='center'> <font color=green size='5pt'><a href="home.php">กลับไปยังหน้าแรก</a></font> </p>
</html>
ประวัติการแก้ไข 2020-07-19 16:16:54
Date :
2020-07-19 16:13:53
By :
wiwatklanpan
Load balance : Server 01