|
|
|
วิธีเก็บข้อมูล Textbox array[] ลงใน ฐานข้อมูล ทำยังไงครับ |
|
|
|
|
|
|
|
ไม่สามารถเก็บค่า textbox ถัดไปได้ ( textbox ถัดไป ได้มาจาก การกด enter )
ผมไม่รู้ จะ ใส่ foreach ตรงไหน ของโค๊ด ใน sql หรือ fucntion script รบกวนช่วยดูหน่อยนะครับ
โค๊ด เว็บ นะครับ
https://jsfiddle.net/0p9esxx7/2/
Code
<?php //insert sql to databases
$EMP_NO = $_POST['EMP_NOO'];
$depart = $_POST['departt'];
$types = $_POST['typess'];
$issue = $_POST['issuee'];
$doc = $_POST['docc'];
$sn = $_POST['snn'];
$a=date("m/d/Y H:i:s");
if(isset($EMP_NO)&& isset($depart) && isset($types ) && isset($issue) && isset($doc) && isset($sn) )
{
if($_POST["postId"] != '')
{
//update post
$sql = "UPDATE rework_process SET emp_no = '".trim($EMP_NO)."', department = '".trim($depart)."' , type = '".trim($types)."' , issue = '".trim($issue)."', doc = '".trim($doc)."', sn = '".trim($sn)."'
WHERE post_id = '".$_POST["postId"]."'";
mssql_query($sql);
}
else
{
foreach( $sn as $key => $n ) {
//insert post
$sql = "INSERT INTO rework_process(emp_no,department,type,issue,doc,sn,date_in, status) VALUES ('".trim($EMP_NO)."','".trim($depart)."','".trim($types)."','".trim($issue)."','".trim($doc)."','".trim($n)."','".trim($a)."', 'pass')";
mssql_query($sql);
}
}
}
?>
Tag : PHP, Ms SQL Server 2008, CSS, JavaScript, Ajax, Apache
|
|
|
|
|
|
Date :
2017-05-15 14:41:42 |
By :
boy |
View :
1859 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ศึกษาจากบทความนี้ครับ
PHP MySQL Multiple Record Add/Insert Data Record (mysqli)
|
|
|
|
|
Date :
2017-05-16 09:50:42 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|