Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > Add/Remove Element รบกวนแนะนำเรื่องการรับค่าจาก Texbox ที่เป็นไดนามิก หน่อยค่ะ



 

Add/Remove Element รบกวนแนะนำเรื่องการรับค่าจาก Texbox ที่เป็นไดนามิก หน่อยค่ะ

 



Topic : 060701



โพสกระทู้ ( 56 )
บทความ ( 0 )



สถานะออฟไลน์




หนูเอาโค้ดจากในเว็บนี้มากใช้นะค่ะ แต่รับค่าเพื่อจะไปเก็บในฐานข้อมูลไม่เป็นดูให้หนูหน่อยนะค่ะ

ภาพที่หนูใช้รับข้อมูลค่ะ

โดยใช้โค้ดนี้

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com JavaScript Add/Remove Element</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<script language="javascript">
	function CreateNewRow()
	{
		var intLine = parseInt(document.frmMain.hdnMaxLine.value);
		intLine++;
			
		var theTable = document.getElementById("tbExp");
		var newRow = theTable.insertRow(theTable.rows.length)
		newRow.id = newRow.uniqueID

		var newCell
		
		//*** Column 1 ***//
		newCell = newRow.insertCell(0);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column1_"+intLine+"\"  ID=\"Column1_"+intLine+"\" VALUE=\"\"></center>";

		//*** Column 2 ***//
		newCell = newRow.insertCell(1);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column2_"+intLine+"\" ID=\"Column2_"+intLine+"\"  VALUE=\"\"></center>";
		
		document.frmMain.hdnMaxLine.value = intLine;
	}
	
	function RemoveRow()
	{
		intLine = parseInt(document.frmMain.hdnMaxLine.value);
		if(parseInt(intLine) > 0)
		{
				theTable = document.getElementById("tbExp");				
				theTableBody = theTable.tBodies[0];
				theTableBody.deleteRow(intLine);
				intLine--;
				document.frmMain.hdnMaxLine.value = intLine;
		}	
	}	
</script>

<!--อันนี้เป็นส่วนของคำตอบ-->
<script language="javascript">
	function CreateNewRow1()
	{
		var intLine1 = parseInt(document.frmMain.hdnMaxLine1.value);
		intLine1++;
			
		var theTable1 = document.getElementById("tbExp1");
		var newRow1 = theTable1.insertRow(theTable1.rows.length)
		newRow1.id = newRow1.uniqueID

		var newCell1
		
		//*** Column 1 ***//
		newCell1 = newRow1.insertCell(0);
		newCell1.id = newCell1.uniqueID;
		newCell1.setAttribute("className", "css-name");
	<!--	newCell1.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column3_"+intLine1+"\"  ID=\"Column3_"+intLine1+"\" VALUE=\""+intLine1+"\" readonly></center>";-->
	newCell1.innerHTML = "<center>"+intLine1+"</center>";
		//*** Column 2 ***//
		newCell1 = newRow1.insertCell(1);
		newCell1.id = newCell1.uniqueID;
		newCell1.setAttribute("className", "css-name");
		newCell1.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column4_"+intLine1+"\" ID=\"Column4_"+intLine1+"\"  VALUE=\"\"> </center>";
		
		document.frmMain.hdnMaxLine1.value = intLine1;
	}
	
	function RemoveRow1()
	{
		intLine1 = parseInt(document.frmMain.hdnMaxLine1.value);
		if(parseInt(intLine1) > 0)
		{
				theTable1 = document.getElementById("tbExp1");				
				theTableBody = theTable1.tBodies[0];
				theTableBody.deleteRow(intLine1);
				intLine1--;
				document.frmMain.hdnMaxLine1.value = intLine1;
		}	
	}	
</script>
<body>
<form name="frmMain" method="post" action="addQpair.php">
<table width="900" border="0">
<tr>
	<td valign="top">
		<table width="445" border="1" id="tbExp">
  			<tr valign="top">
 			  <td><div align="center">คำถาม</div></td>
   			  <td><div align="center">เลขหมายคำตอบที่ถูกต้อง</div></td>
		  </tr>
        </table>
                <input type="hidden" name="hdnMaxLine" value="0">
				<input name="btnAdd" type="button" id="btnAdd" value="+" onClick="CreateNewRow();">
				<input name="btnDel" type="button" id="btnDel" value="-" onClick="RemoveRow();">        
     </td>
     <td valign="top">
     	 <table width="445" border="1" id="tbExp1">
  			<tr>
 			  <td><div align="center">หมายเลขคำตอบ</div></td>
    			 <td><div align="center">คำตอบทั้งหมด</div></td>
		   </tr></table>
             <input type="hidden" name="hdnMaxLine" value="0">
			 <input name="btnAdd1" type="button" id="btnAdd" value="+" onClick="CreateNewRow1();">
			 <input name="btnDel1" type="button" id="btnDel" value="-" onClick="RemoveRow1();">
      </td>
 </tr>
 </table>
</form>
</body>
</html>




Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-05-25 22:52:40 By : kimsumsun View : 1074 Reply : 7
 

 

No. 1



โพสกระทู้ ( 56 )
บทความ ( 0 )



สถานะออฟไลน์


รับค่าไม่เป็นช่วยทีนะค่ะ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-05-25 22:53:30 By : kimsumsun
 


 

No. 2



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


Code (PHP)
for($i=0;$i<$_POST['hdnMaxLine'];$i++){
echo $_POST['Column3_'. $i];
}


น่าจะใช่นะ ดูลำบากไม่ครอบ code ให้
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-05-26 01:49:00 By : PlaKriM
 

 

No. 3



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ตามตัวอย่างครับ

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
	<?
		mysql_connect("localhost","root","root") or die (mysql_error());
		mysql_select_db("mydatabase");

		for($i=1;$i<=(int)($_POST["hdnLine"]);$i++)
		{
			if($_FILES["fileUpload".$i]["name"] != "")
			{
				if(copy($_FILES["fileUpload".$i]["tmp_name"],"thaicreate/".$_FILES["fileUpload".$i]["name"]))
				{
					$strSQL = "INSERT INTO gallery ";
					$strSQL .="(GalleryName,Picture) VALUES ('".$_POST["txtGalleryName".$i]."','".$_FILES["fileUpload".$i]["name"]."')";
					mysql_query($strSQL);
					echo "Copy/Upload ".$_FILES["fileUpload".$i]["name"]." completed.<br>";
				}
			}
		}

		echo "<br><a href='php_multiple_upload6.php'>View file</a>";

		mysql_close();
	?>
</body>
</html>


Go to : PHP MySQL Upload File to MySQL Database - Multiple Dynamic CreateElement Input File Upload
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-05-26 06:41:25 By : webmaster
 


 

No. 4



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

createElement('select'); สร้าง Element ของ Select Option พร้อมกับ ดึงข้อมูลจาก MySQL Database ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-05-26 06:46:09 By : webmaster
 


 

No. 5



โพสกระทู้ ( 56 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณมากค่ะทำได้แล้วค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-05-26 20:23:41 By : kimsumsun
 


 

No. 6

Guest


คุณ kimsumsun เขียนยังไงครับ ช่วยบอกผมหน่อยครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-24 15:24:53 By : ภานุวัฒน์ จิตโสภารัตน
 


 

No. 7



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ตอบความคิดเห็นที่ : 6 เขียนโดย : ภานุวัฒน์ จิตโสภารัตน เมื่อวันที่ 2011-08-24 15:24:53
รายละเอียดของการตอบ ::
ตามตัวอย่างที่ผมบอกครับ ดูได้ตามนั้นเลยครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-24 20:17:04 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : Add/Remove Element รบกวนแนะนำเรื่องการรับค่าจาก Texbox ที่เป็นไดนามิก หน่อยค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่