|
|
|
เรคอดที่ได้จากการค้นหา เวลา ส่งค่า ทำไมไม่มีค่าที่ส่งไปอ่ะครับ |
|
|
|
|
|
|
|
คือผมประยุกต์จากตัวอย่างนี้
http://bio.mq.edu.au/Tools/jquery/plugins/riklomas-quicksearch/examples/super_table.html
ค่า <th><div align="center"><input type="text" name="Quantity[]" id="Quantity"/></div></th>
เรคอดที่เกิดจากการค้นหา เวลากรอกค่าไป ค่าที่อยู่ในฟอร์มมันไม่ยอมส่งค่าไปด้วยอ่ะครับ ทั้งๆ ที่ก้เห็นว่ามีค่าอยู่
แต่ถ้าเปิด เรคอดปกติ คือ เปิดหน้าต่างมาแล้วก้ พิมพ์ กด check เลือกเลย ไม่มีปัญหาครับ ค่าส่งไปปกติ
ทำไงดีอ่ะครับ
Form
<!DOCTYPE html>
<html>
<head>
<title>Search</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery.quicksearch.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#id_search").quicksearch("table tbody tr", {
noResults: '#noresults',
stripeRows: ['odd', 'even'],
loader: 'span.loading'
});
});
function onSave()
{
if(confirm('Do you want to Save ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<link rel="stylesheet" href="style/style.css" type="text/css" media="all" title="" />
</head>
<body id="tools">
<form action="#">
<fieldset>
<input type="text" name="search" value="" id="id_search" /> <span class="loading">Loading...</span>
</fieldset>
</form>
<form name="frmMain" action="Select_Material.php" method="post" OnSubmit="return onSave();">
<?
$ID_Pack = $_GET["ID_Pack"];
$Type_M = $_GET["Type_Formula"];
include('config.inc.php');
$strSQL = "SELECT * FROM material_last WHERE Type_M = ".$Type_M." ORDER BY Name ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<h2>Select Material </h2>
<table width="950" id="Table-main" align="center">
<thead>
<tr>
<th width="5%"> <div align="center">ลำดับ </div></th>
<th width="40%"> <div align="center">Name </div></th>
<th width="15%"> <div align="center">Code </div></th>
<th width="20%"> <div align="center">Quantity</div></th>
<th width="7%"> <div align="center">Type </div></th>
<th width="7%"> <div align="center">Class </div></th>
<th width="6%"> <div align="center">Add </div></th>
</tr>
</thead>
<?
$d=0;
while($objResult = mysql_fetch_array($objQuery))
{$d++;
?>
<tbody>
<tr>
<th><div align="center"><? echo $d; ?></div></th>
<th><?=$objResult["Name"];?></th>
<th><?=$objResult["Code"];?></th>
<th><div align="center"><input type="text" name="Quantity[]" id="Quantity"/></div></th>
<th align="right"><?=$objResult["Type"];?></th>
<th align="right"><?=$objResult["Class"];?></th>
<th align="center"><input align="center" type="checkbox" name="ID_Material[]" value="<?=$objResult["ID_Material"];?>"></th>
<th hidden><input type="hidden" name="ID_Pack[]" value="<? echo $ID_Pack ?>"></th>
<th hidden><input type="hidden" name="Type_Formula[]" value="<? echo $Type_Formula ?>"></th>
</tr>
<?
}
?>
<tr id="noresults">
<td colspan="6">No Results</td>
</tr>
</tbody>
</table>
<?
mysql_close($objConnect);
?>
<br>
<input type="submit" name="btnDelete" value="Add">
</form>
</body>
</html>
Select_Material.php
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
include('config.inc.php');
for($i=0;$i<count($_POST["ID_Material"]);$i++)
{
if($_POST["ID_Material"][$i] != "")
{
$strSQL = "INSERT INTO Pack_material (ID_Pack,ID_Material,Quantity)
VALUES (
'".trim($_POST['ID_Pack'][$i])."',
'".trim($_POST['ID_Material'][$i])."',
'".trim($_POST['Quantity'][$i])."')";
$objQuery = mysql_query($strSQL);
}
}
echo "Save Completed.";
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP, MySQL, JavaScript, jQuery
|
ประวัติการแก้ไข 2013-06-24 11:19:02
|
|
|
|
|
Date :
2013-06-24 11:16:09 |
By :
cappuczino |
View :
670 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รู้ปัญหาแล้วครับ
คือเวลา ค้นหาเรคอด id table มันเลื่อนอ่ะครับ มันไม่ตรงกับ name="Quantity[]" ที่กรอกไว้
แนะนำหน่อยครับ แก้ไงดี
|
|
|
|
|
Date :
2013-06-24 13:28:40 |
By :
cappuczino |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
insert checkbox ผมมันผิดอ่ะครับ แก้ไงดีอ่ะครับ รบกวนแก้ให้หน่อยน่ะครับ T_T แก้ไม่ถูก
Code (PHP)
<form name="frmMain" action="Select_Material.php" method="post" OnSubmit="return onDelete();">
<?
$ID_Pack = $_GET["ID_Pack"];
$Type_M = $_GET["Type_Formula"];
include('config.inc.php');
$strSQL_n = "SELECT * FROM pack WHERE ID_Pack = ".$ID_Pack." ";
$objQuery_n = mysql_query($strSQL_n) or die ("Error Query [".$strSQL_n."]");
$Re_SQL = mysql_fetch_array($objQuery_n);
$strSQL = "SELECT * FROM material_last WHERE Type_M = ".$Type_M." ORDER BY Name ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<h2>Select Material ..... <?php echo $Re_SQL["SKU"];?> ..... </h2>
<table width="950" id="Table-main" align="center">
<tr>
<td><input type="submit" name="btnDelete" value="Add"></td>
</tr>
<tr>
<td width="5%"> <div align="center">ลำดับ </div></td>
<td width="40%"> <div align="center">Name </div></td>
<td width="15%"> <div align="center">Code </div></td>
<td width="20%"> <div align="center">Quantity</div></td>
<td width="7%"> <div align="center">Type </div></td>
<td width="7%"> <div align="center">Class </div></td>
<td width="6%"> <div align="center">Add </div></td>
</tr>
<?
$d=0;
while($objResult = mysql_fetch_array($objQuery))
{$d++;
?>
<tr>
<th><div align="center"><? echo $d; ?></div></th>
<th><?=$objResult["Name"];?></th>
<th><?=$objResult["Code"];?></th>
<th><div align="center"><input type="text" name="Quantity[]" id="Quantity"/></div></th>
<th align="right"><?=$objResult["Type"];?></th>
<th align="right"><?=$objResult["Class"];?></th>
<th align="center"><input align="center" type="checkbox" name="ID_Material[]" value="<?=$objResult["ID_Material"];?>"></th>
<th hidden><input type="hidden" name="ID_Pack[]" value="<? echo $ID_Pack ?>"></th>
<th hidden><input type="hidden" name="Type_Formula[]" value="<? echo $Type_Formula ?>"></th>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
<br>
</form>
Code (PHP)
<?
include('config.inc.php');
for($i=1;$i<count($_POST["ID_Material"]);$i++)
{
if($_POST["ID_Material"][$i] != "")
{
$strSQL = "INSERT INTO Pack_material (ID_Pack,ID_Material,Quantity)
VALUES (
'".trim($_POST['ID_Pack'][$i])."',
'".trim($_POST['ID_Material'][$i])."',
'".trim($_POST['Quantity'][$i])."')";
$objQuery = mysql_query($strSQL);
}
}
echo "Save Completed.";
mysql_close($objConnect);
?>
|
|
|
|
|
Date :
2013-06-24 14:07:16 |
By :
cappuczino |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|