|
|
|
มี textbox array ค่ะ และต้องการส่งค่าข้อมูลที่เป็น array เพื่อไปแสดงใน textbox array ต้องเขียนยังไงค่ะ |
|
|
|
|
|
|
|
<input type="text" name="txtName[]" id="txtName[]" value="">
<input type="text" name="txtName[]" id="txtName[]" value="">
ในหน้ารับข้อมูลก็ใช้ for หรือ while
for($i=0;$i<count($_POST['txtName']);$i++){
echo $_POST['txtName'];
}
ไม่ได้ลองนะครับแต่มันมีแค่ประมาณนี้แหละครับ
|
|
|
|
|
Date :
2011-12-21 10:34:16 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="text" name="txtName[0]" id="txtName[0]" value="">
<input type="text" name="txtName[1]" id="txtName[1]" value="">
function ShowEdit(sCustomerID,sName,sName1,sName2)
{ document.getElementById("mySpan").style.display = '';
document.getElementById("COLORScode").value = sCustomerID;
document.getElementById("COLORScode2").value = sName;
}
JavaScript:ShowEdit('<?=$row["BRANCHcode"];?>','<?=$row["COMPANYcode"];?>')
ต้องการส่งค่า ค่า array ค่ะ ที่ดึงจากฐานข้อมูลค่ะ คือ $PHONETYPEcode[] เข้า function ShowEdit เพื่อแสดงค่าใน txtName[]
ต้องเขียนส่งค่า และรับค่ายังไงค่ะ
Code (PHP)
$strSQL2="select * from employeephone where EMPLOYEEcode='$row[EMPLOYEEcode]' ";
$objQuery2 = mysql_query($strSQL2, $conn);
$Num = mysql_num_rows($objQuery2);
$p=0;;
while ($row2=mysql_fetch_array($objQuery2))
{
$PHONETYPEcode[$p] ="$row2[PHONETYPEcode]";
$p++;
}
ขอบคุณค่ะ
|
|
|
|
|
Date :
2011-12-21 22:13:23 |
By :
sreesuda |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมอ่านสองรอบผมยังไง ตกลงกำลังจะทำอะไรครับ ติดตรงไหน ต้อง javascript หรือ ว่ารับค่า array
|
|
|
|
|
Date :
2011-12-22 07:06:02 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องเขียนส่งค่า array ไป javascript ยังไงค่ะ และตรงแสดงค่า textbox array ค่ะ
|
|
|
|
|
Date :
2011-12-22 09:48:21 |
By :
sreesuda |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL2="select * from employeephone where EMPLOYEEcode='$row[EMPLOYEEcode]' ";
$objQuery2 = mysql_query($strSQL2, $conn);
$Num = mysql_num_rows($objQuery2);
$p=0;;
while ($row2=mysql_fetch_array($objQuery2))
{
$PHONETYPEcode[$p] ="$row2[PHONETYPEcode]";
$p++;
}
ต้องการส่งค่า array $PHONETYPEcode[$p] เข้า ShowEdit
function ShowEdit(sCustomerID,sName,sName1,sName2)
{ document.getElementById("mySpan").style.display = '';
document.getElementById("COLORScode").value = sCustomerID;
document.getElementById("COLORScode2").value = sName;
}
ต้องเขียนค่ายังไงค่ะ
|
|
|
|
|
Date :
2011-12-22 23:18:14 |
By :
sreesuda |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$PHONETYPEcode[$p] ="$row2[PHONETYPEcode]";
ไม่ทราบว่าส่งค่า array ผ่าน get แบบนี้ทำได้มั๊ยค่ะ
<a href="JavaScript:ShowEdit('<?=$row["EMPLOYEEcode"];?>','<?=$HRDOCCODE.$row["EMPLOYEEcode"];?>','<?=$row["PREFIXcode"];?>')</a>
|
|
|
|
|
Date :
2011-12-22 23:43:23 |
By :
sreesuda |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|