เราจะบันทึกข้อมูลแบบเดียวหลาย input ลงในตาราง SQL เดียวกันยังไงครับ
ผมอยากจะ บันทึก จำนวนตัวเลข กับราคา ลงไปใน ตาราง sql เดียวกัน พร้อมกันเลยครับ
10 ชุด แบบนี้ครับ ต้องทำไงครับ ขอบคุณครับ
Code (PHP)
<!-- ใส่ตัวเลข ราคา -->
<tr>
<td>
ตัวเลข <input type="text" name="num" size="10" OnKeyPress="return chkNumber(this)">
ราคา <input type="text" name="price" size="10" OnKeyPress="return chkNumber(this)"> บาท
</td>
<td>
ตัวเลข <input type="text" name="num" size="10" OnKeyPress="return chkNumber(this)">
ราคา <input type="text" name="price" size="10" OnKeyPress="return chkNumber(this)"> บาท
</td>
</tr>
<tr>
<td>
ตัวเลข <input type="text" name="num" size="10" OnKeyPress="return chkNumber(this)">
ราคา <input type="text" name="price" size="10" OnKeyPress="return chkNumber(this)"> บาท
</td>
<td>
ตัวเลข <input type="text" name="num" size="10" OnKeyPress="return chkNumber(this)">
ราคา <input type="text" name="price" size="10" OnKeyPress="return chkNumber(this)"> บาท
</td>
</tr>
Code (PHP)
$user = $_POST['user'];
$type = $_POST['type'];
$num = $_POST['num'];
$price = $_POST['price'];
$n_bill = $_POST['n_bill'];
$submit = $_POST['submit'];
$cut = $_POST['cut'];
$sql = "insert into number (user , type , num , price, n_bill , date , cut)
values ('$user' ,'$type' , '$num' , '$price' , '$n_bill' , now() , cut)";
$conn->query($sql) or die( $conn->error);
Tag : PHP, MySQL
Date :
2021-12-24 11:31:40
By :
lhumdin
View :
2127
Reply :
7
ขอบคุณครับ
Date :
2021-12-24 12:19:24
By :
lhumdin
ขอบคุณครับ
Date :
2021-12-25 08:18:24
By :
lhumdin
ขอบคุณครับ
Date :
2021-12-26 08:24:13
By :
lhumdin
Load balance : Server 05